add/fix more comments

This commit is contained in:
Alexandre Ratchov 2012-11-11 17:47:48 +01:00
parent 832a0a5a1f
commit f6df08e0c3
1 changed files with 9 additions and 0 deletions

View File

@ -139,6 +139,9 @@ panic(void)
_exit(1);
}
/*
* allocate a (small) abount of memory, and abort if it fails
*/
void *
xmalloc(size_t size)
{
@ -154,12 +157,18 @@ xmalloc(size_t size)
return p;
}
/*
* free memory allocated with xmalloc()
*/
void
xfree(void *p)
{
free(p);
}
/*
* xmalloc-style strdup(3)
*/
char *
xstrdup(char *s)
{