Initial revision
This commit is contained in:
12
lib/stdio/putchar.c
Executable file
12
lib/stdio/putchar.c
Executable file
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
* putchar.c - print (or buffer) a character on the standard output stream
|
||||
*/
|
||||
/* $Header$ */
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
int
|
||||
(putchar)(int c)
|
||||
{
|
||||
return putchar(c);
|
||||
}
|
||||
Reference in New Issue
Block a user