Incorporate bsdmake into buildsystem and reorganize libs

This commit is contained in:
Arun Thomas
2010-02-16 14:41:33 +00:00
parent 6686e9ae9f
commit b706112487
1513 changed files with 8094 additions and 26613 deletions
+23
View File
@@ -0,0 +1,23 @@
/*
* fscanf.c - read formatted input from stream
*/
/* $Header$ */
#include <stdio.h>
#include <stdarg.h>
#include "loc_incl.h"
int
fscanf(FILE *stream, const char *format, ...)
{
va_list ap;
int retval;
va_start(ap, format);
retval = _doscan(stream, format, ap);
va_end(ap);
return retval;
}