home *** CD-ROM | disk | FTP | other *** search
- /////////////////////////////////////////////////////////////
- // placenew.h: inline placement new operator
- // Copyright(c) 1993 Azarona Software. All rights reserved.
- /////////////////////////////////////////////////////////////
- #ifndef H_PLACENEW
- #define H_PLACENEW
- #include <stddef.h>
-
- inline void *operator new(size_t, void *p)
- // Placement new operator.
- {
- return p;
- }
-
- #endif
-
-