Incorporate bsdmake into buildsystem and reorganize libs
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
* fgetc - get an unsigned character and return it as an int
|
||||
*/
|
||||
/* $Header$ */
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
int
|
||||
fgetc(FILE *stream)
|
||||
{
|
||||
return getc(stream);
|
||||
}
|
||||
Reference in New Issue
Block a user