#ifndef __STANDARDHEADERS_H__ #define __STANDARDHEADERS_H__ #include #include #include #include #include /* #if defined(MSL_WIN_ALLOCA) #include #else #include #endif #define MALLOC(t,x) ((t *)malloc((x) ? (x) : 1)) #define MALLOC_TYPE(t) (t *)malloc(sizeof(t)) #define MALLOC_TYPES(t,n) (t *)malloc(sizeof(t)*(n)) */ #if !defined(HAVE_STRDUP) extern char *strdup(const char *s); #endif #endif