home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 387b.lha / dice_v2.02 / lib / stdio / puts.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-30  |  233 b   |  19 lines

  1.  
  2. /*
  3.  *  PUTS.C
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #include <stdio.h>
  9.  
  10. int
  11. puts(buf)
  12. const char *buf;
  13. {
  14.     fwrite(buf, 1, strlen(buf), stdout);
  15.     putc('\n', stdout);
  16.     return(stdout->sd_Error);
  17. }
  18.  
  19.