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