home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
magazine
/
msysjour
/
vol04
/
01b
/
macsl
/
machine.h
< prev
next >
Wrap
Text File
|
1988-10-03
|
597b
|
19 lines
/*-----------------------------------------------------------------*/
/* Machine.h */
/* Machine dependent declarations. */
/*-----------------------------------------------------------------*/
#ifdef PM_MACINTOSH /* no prototypes in Lightspeed headers! */
typedef unsigned int size_t;
void exit( int );
void* malloc( size_t );
void* realloc( void*, size_t );
int vsprintf( char*, char*, void* );
#endif
/*-----------------------------------------------------------------*/