home *** CD-ROM | disk | FTP | other *** search
-
- #ifndef __STANDARDHEADERS_H__
- #define __STANDARDHEADERS_H__
-
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <unistd.h>
- #include <assert.h>
-
-
- /*
- #if defined(MSL_WIN_ALLOCA)
- #include <malloc.h>
- #else
- #include <alloca.h>
- #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
-