home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / src / libc / stdio / printf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1979-01-10  |  116 b   |  9 lines

  1. #include    <stdio.h>
  2.  
  3. printf(fmt, args)
  4. char *fmt;
  5. {
  6.     _doprnt(fmt, &args, stdout);
  7.     return(ferror(stdout)? EOF: 0);
  8. }
  9.