Changeset 587 for GPL/trunk/include/malloc.h
- Timestamp:
- Jun 9, 2016, 10:38:13 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk/include/malloc.h
r502 r587 35 35 void NEAR *malloc(ULONG size, const char *filename, int lineno); 36 36 void free(void *NEAR ptr, const char *filename, int lineno); 37 void NEAR *realloc(void *NEAR ptr, unsigned newsize, const char *filename, int lineno);37 void NEAR *realloc(void *NEAR ptr, unsigned long newsize, const char *filename, int lineno); 38 38 #else 39 39 void NEAR *malloc(ULONG size); 40 40 void free(void NEAR *); 41 void NEAR *realloc(void NEAR *, unsigned );41 void NEAR *realloc(void NEAR *, unsigned long); 42 42 #endif 43 43
Note:
See TracChangeset
for help on using the changeset viewer.