//Libc fudge, mainly for windows. #ifndef BB_LIB_C_H #define BB_LIB_C_H #include #include #include #include #include #include #include #if _WIN32 #include #else #include #endif typedef struct tm tm_t; typedef struct stat stat_t; int system_( const char *command ); void setenv_( const char *name,const char *value,int overwrite ); int mkdir_( const char *path,int mode ); int gettimeofday_( timeval *tv ); #endif