Subversion Repositories planix.SVN

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
/*
2
 * pANS stdio -- fputc
3
 */
4
#include "iolib.h"
5
int fputc(int c, FILE *f){
6
	return putc(c, f);	/* This can be made more fair to _IOLBF-mode streams */
7
}