home *** CD-ROM | disk | FTP | other *** search
- #ifndef _SIZE_T
- #define _SIZE_T 1
- typedef unsigned int size_t;
- #endif
-
- /*
- *
- * Level 3 memory allocation services
- *
- */
- extern void *malloc (unsigned);
- extern void *calloc (unsigned,unsigned);
- extern void *realloc (void*, unsigned);
- extern void free (void *);
-
- /*
- *
- * Miscellaneous functions
- *
- */
- extern int atoi (char *);
- extern long atol (char *);
-