ack/lang/cem/libcc.ansi/stdio/puts.c
1989-05-30 13:34:25 +00:00

13 lines
165 B
C

/*
* puts.c - print a string onto the standard output stream
*/
/* $Header$ */
#include <stdio.h>
int
puts(register const char *s)
{
return fputs(s, stdout);
}