ack/lang/cem/libcc/stdio/fputs.c
1987-03-31 10:45:53 +00:00

11 lines
126 B
C

/* $Header$ */
#include <stdio.h>
fputs(s,file)
register char *s;
register FILE *file;
{
while ( *s )
putc(*s++,file);
}