|
|
1.1 root 1: /*
2: * libc/stdio/putchar.c
3: * ANSI-compliant C standard i/o library.
4: * putchar()
5: * ANSI 4.9.7.9.
6: * Write character c to stdout.
7: */
8:
9: #include <stdio.h>
10: #undef putchar
11:
12: int
13: putchar(c) int c;
14: {
15: return putc(c, stdout);
16: }
17:
18: /* end of libc/stdio/putchar.c */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.