ack/lang/cem/libcc/stdio/fputs.c
1994-06-24 14:02:31 +00:00

11 lines
122 B
C

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