blob: cf69af312aa487e05d93da318e04581549018552 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <stdarg.h>
#include <stdio.h>
int main( int argc, char *argv[] )
{
/* we need a set of functions we want to support.
* so we can provide an abstract platform independent
* interface.
*/
return 0;
}
|