home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD2.iso
/
Programming
/
C
/
SASC6571.LZX
/
cxxinclude
/
new.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1996-12-24
|
644 b
|
18 lines
/* Copyright (c) 1993 by SAS Institute Inc., Cary NC */
#ifndef __NEW_H
#define __NEW_H
#ifndef _STDDEFH
#include <stddef.h>
#endif
void* operator new( size_t bytes );
void operator delete( void* pointer );
void (*set_new_handler (void(*handler)()))();
#endif /* __NEW_H */