home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / SASC6571.LZX / cxxinclude / new.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-12-24  |  644 b   |  18 lines

  1. /* Copyright (c) 1993             by SAS Institute Inc., Cary NC     */
  2.  
  3. #ifndef __NEW_H
  4. #define __NEW_H
  5.  
  6. #ifndef _STDDEFH
  7. #include <stddef.h>
  8. #endif
  9.                                                                                 
  10. void* operator new( size_t bytes );                                             
  11. void operator delete( void* pointer );                                          
  12.                                                                                 
  13. void (*set_new_handler (void(*handler)()))();                    
  14.                                                                                 
  15. #endif /* __NEW_H */
  16.  
  17.  
  18.