CVS update: /common/runtime/platform/mac/
bobclark at helixcommunity.org bobclark at helixcommunity.orgUser: bobclarkDate: 02/12/19 17:09:57 Modified /common/runtime/platform/mac/ hxcrt.cpp Log mac needs malloc and friends to be implemented here (for now) File Changes: Directory: /common/runtime/platform/mac/ ======================================== File [changed]: hxcrt.cpp Url: https://common.helixcommunity.org/source/browse/common/runtime/platform/mac/hxcrt.cpp.diff?r1=1.1.1.1&r2=1.2 Delta lines: +4 -7 ------------------- --- hxcrt.cpp 18 Oct 2002 01:44:54 -0000 1.1.1.1 +++ hxcrt.cpp 20 Dec 2002 01:09:57 -0000 1.2 @@ -59,10 +59,10 @@ BOOL HXMM_ATINTERRUPT(void); void HXMM_COMPACT(void); -//void* malloc(size_t size); -//void* calloc(size_t nmemb, size_t size); -//void* realloc(void* ptr, size_t size); -//void free(void* ptr); +void* malloc(size_t size); +void* calloc(size_t nmemb, size_t size); +void* realloc(void* ptr, size_t size); +void free(void* ptr); char *__ttyname(long); @@ -127,7 +127,6 @@ #pragma mark - -/* void* malloc(size_t size) { return HXMM_NEW(size); @@ -178,8 +177,6 @@ { HXMM_DELETE(ptr); } - -*/ #pragma mark - --------------------------------------------------------------------- To unsubscribe, e-mail: cvs-unsubscribe at common.helixcommunity.org For additional commands, e-mail: cvs-help at common.helixcommunity.org