diff --git a/src/sbbs3/sbbswrap.h b/src/sbbs3/sbbswrap.h index 71c5ce529508132e4c0d8037b687431c9223f288..9e56f033b270a632be8f2575ecf32123b977ed2c 100644 --- a/src/sbbs3/sbbswrap.h +++ b/src/sbbs3/sbbswrap.h @@ -84,14 +84,10 @@ extern "C" { #elif defined(__unix__) #define mswait(x) usleep(x*1000) - #define stricmp(x,y) strcasecmp(x,y) - #define strnicmp(x,y,z) strncasecmp(x,y,z) - #define chsize(fd,size) ftruncate(fd,size) #define _mkdir(dir) mkdir(dir,0777) #define _rmdir(dir) rmdir(dir) DLLEXPORT void DLLCALL sbbs_beep(int freq, int dur); - DLLEXPORT long DLLCALL filelength(int fd); DLLEXPORT char* DLLCALL strupr(char* str); DLLEXPORT char* DLLCALL strlwr(char* str); @@ -168,8 +164,6 @@ extern "C" { /* General file system wrappers for all platforms and compilers */ -DLLEXPORT BOOL DLLCALL fexist(char *filespec); -DLLEXPORT long DLLCALL flength(char *filename); DLLEXPORT long DLLCALL fdate(char *filename); DLLEXPORT int DLLCALL getfattr(char* filename); DLLEXPORT ulong DLLCALL getfreediskspace(char* path);