00001 // Substandard I/O 00002 // 00003 // stdio.h replacement/wrapper, since some target platforms have I/O not quite 00004 // rising to the level of "standard". 00005 // 00006 // For platforms with working stdio, this should just include it. For other 00007 // platforms, this should prototype a custom implementation. 00008 #ifndef SUBSTDIO_H 00009 #define SUBSTDIO_H 00010 00011 #include <stdio.h> 00012 #include <stdarg.h> 00013 00014 #endif 00015
1.3.6