I'm too tired to mess with this. I'll probably break something. Time to go to bed.
13 lines
243 B
C
13 lines
243 B
C
#include <sys/types.h>
|
|
#include <sys/systm.h>
|
|
|
|
#ifdef __cplusplus
|
|
#define __extern_C extern "C"
|
|
#else
|
|
#define __extern_C extern
|
|
#endif
|
|
|
|
enum FILE{ stdin, stdout, stderr };
|
|
|
|
#define fprintf( file, format, ... ) printf( format, ## __VA_ARGS__ )
|