diff options
| author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-01 20:43:44 +0000 | 
|---|---|---|
| committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-01 20:43:44 +0000 | 
| commit | 8a0b43005ad9ea011b80d66e32b46fb430ddaffb (patch) | |
| tree | 418818740042c5dbba244bc1efc760c8d29e47a9 /libc/stdlib/malloc-simple | |
| parent | 42b161bb716f35948fabd36472fb59cd0a20fa92 (diff) | |
Hide mostly used functions
Diffstat (limited to 'libc/stdlib/malloc-simple')
| -rw-r--r-- | libc/stdlib/malloc-simple/alloc.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdlib/malloc-simple/alloc.c b/libc/stdlib/malloc-simple/alloc.c index ed14c37c4..7f0a91f0b 100644 --- a/libc/stdlib/malloc-simple/alloc.c +++ b/libc/stdlib/malloc-simple/alloc.c @@ -64,7 +64,7 @@ void * calloc(size_t nmemb, size_t lsize)  	 * doesn't need to actually zero anything....  	 */  	if (result != NULL) { -		memset(result, 0, size); +		__memset(result, 0, size);  	}  #endif  	return result; @@ -85,7 +85,7 @@ void *realloc(void *ptr, size_t size)  	newptr = malloc(size);  	if (newptr) { -		memcpy(newptr, ptr, *((size_t *) (ptr - sizeof(size_t)))); +		__memcpy(newptr, ptr, *((size_t *) (ptr - sizeof(size_t))));  		free(ptr);  	}  	return newptr;  | 
