home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Dream 57
/
Amiga_Dream_57.iso
/
Amiga
/
Programmation
/
c
/
Compilateur
/
Gcc
/
Edition
/
newgccstart.lha
/
headers
/
stdlib.h
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-03-14
|
265 b
|
16 lines
#ifndef STDLIB_H
#define STDLIB_H
#ifndef _SIZE_T_
#define _SIZE_T_
typedef unsigned long size_t;
#endif
void *malloc(size_t size);
void *calloc(size_t nmemb,size_t size);
void *realloc(void *ptr,size_t size);
void free(void *ptr);
void exit(int status);
#endif