summaryrefslogtreecommitdiff
path: root/malloc.c
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2002-08-05 10:31:35 +0000
committerSimon Tatham <anakin@pobox.com>2002-08-05 10:31:35 +0000
commitc478f3d9469c09773097eba89342c311ee70a319 (patch)
treef7b1e1d1ac577b5571bf14fe70af1dced325dccc /malloc.c
parent6758ed90d7c0015752894202138ecbcef35b80a0 (diff)
downloadhalibut-c478f3d9469c09773097eba89342c311ee70a319.zip
halibut-c478f3d9469c09773097eba89342c311ee70a319.tar.gz
halibut-c478f3d9469c09773097eba89342c311ee70a319.tar.bz2
halibut-c478f3d9469c09773097eba89342c311ee70a319.tar.xz
Rename Buttress to Halibut. I _think_ I've caught everything in this pass.
[originally from svn r1800]
Diffstat (limited to '')
-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;