File:  [MW Coherent from dump] / coherent / b / lib / libc / XSTDIO / fputc.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Wed May 29 04:56:36 2019 UTC (7 years ago) by root
Branches: MarkWilliams, MAIN
CVS tags: relic, HEAD
coherent

/*
 * libc/stdio/fputc.c
 * ANSI-compliant C standard i/o library.
 * fputc()
 * ANSI 4.9.7.3.
 * Write character c to stream.
 */

#include <stdio.h>

int
fputc(c, stream) int c; FILE *stream;
{
	return putc(c, stream);
}

/* end of libc/stdio/fputc.c */

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.