Changeset 21916 for trunk/src/win32k/include/new.h
- Timestamp:
- Dec 18, 2011, 10:28:22 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 bin 2 Makefile.inc 1 env.cmd 2 LocalConfig.kmk
-
-
Property svn:mergeinfo
set to
/branches/gcc-kmk merged eligible
- Property svn:ignore
-
trunk/src/win32k/include/new.h
r1678 r21916 12 12 #define _new_h_ 13 13 14 #ifdef __IBMC__ 14 15 /* check for IBMCPP new.h */ 15 16 #ifdef __new_h … … 23 24 typedef unsigned int size_t; 24 25 #endif 26 #endif 27 28 #ifdef __GNUC__ 29 #include <stddef.h> 30 #endif 25 31 26 32 #ifndef __DEBUG_ALLOC__ 27 33 /* The standard favourites */ 28 34 void *operator new(size_t size); 29 void *operator new(size_t size, void *location) ;/* stub */35 void *operator new(size_t size, void *location) throw(); /* stub */ 30 36 31 void *operator new[](size_t size) ;/* stub */32 void *operator new[](size_t size, void *location) ;/* stub */37 void *operator new[](size_t size) throw(); /* stub */ 38 void *operator new[](size_t size, void *location) throw(); /* stub */ 33 39 34 40 void operator delete(void *location); 35 void operator delete[](void *location) ;/* stub */41 void operator delete[](void *location) throw(); /* stub */ 36 42 #endif 37 43
Note:
See TracChangeset
for help on using the changeset viewer.