home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / msj / msjv4_1 / sleuth / macsl / machine.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-10-04  |  597 b   |  19 lines

  1. /*-----------------------------------------------------------------*/
  2. /* Machine.h                                                       */
  3. /* Machine dependent declarations.                                 */
  4. /*-----------------------------------------------------------------*/
  5.  
  6. #ifdef PM_MACINTOSH  /* no prototypes in Lightspeed headers! */
  7.  
  8. typedef unsigned int  size_t;
  9.  
  10. void    exit( int );
  11. void*   malloc( size_t );
  12. void*   realloc( void*, size_t );
  13.  
  14. int     vsprintf( char*, char*, void* );
  15.  
  16. #endif
  17.  
  18. /*-----------------------------------------------------------------*/
  19.