new subdirs: include, lib, tests

This commit is contained in:
grischka
2009-04-18 14:28:45 +02:00
parent e8a52a8249
commit ea5e81bd6a
16 changed files with 0 additions and 6 deletions

11
include/varargs.h Normal file
View File

@ -0,0 +1,11 @@
#ifndef _VARARGS_H
#define _VARARGS_H
#include <stdarg.h>
#define va_dcl
#define va_alist __va_alist
#undef va_start
#define va_start(ap) ap = __builtin_varargs_start
#endif