summaryrefslogtreecommitdiff
path: root/malloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'malloc.c')
-rw-r--r--malloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/malloc.c b/malloc.c
index e9f54d6..1635b47 100644
--- a/malloc.c
+++ b/malloc.c
@@ -4,7 +4,7 @@
#include <stdlib.h>
#include <stdarg.h>
-#include "buttress.h"
+#include "halibut.h"
#ifdef LOGALLOC
#define LOGPARAMS char *file, int line,
@@ -37,8 +37,8 @@ static void logprintf(char *fmt, ...) {
#endif
/*
- * smalloc should guarantee to return a useful pointer - buttress
- * can do nothing except die when it's out of memory anyway
+ * smalloc should guarantee to return a useful pointer - Halibut
+ * can do nothing except die when it's out of memory anyway.
*/
void *(smalloc)(LOGPARAMS int size) {
void *p;