small renamings of two static functions

This commit is contained in:
Anselm R.Garbe
2006-08-21 07:33:18 +02:00
parent b43989207a
commit 08d85d6d66
2 changed files with 5 additions and 5 deletions

6
util.c
View File

@ -12,7 +12,7 @@
/* static */
static void
bad_malloc(unsigned int size)
badmalloc(unsigned int size)
{
eprint("fatal: could not malloc() %u bytes\n", size);
}
@ -25,7 +25,7 @@ emallocz(unsigned int size)
void *res = calloc(1, size);
if(!res)
bad_malloc(size);
badmalloc(size);
return res;
}
@ -45,7 +45,7 @@ erealloc(void *ptr, unsigned int size)
{
void *res = realloc(ptr, size);
if(!res)
bad_malloc(size);
badmalloc(size);
return res;
}