summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-06-09 17:32:43 -0700
committerH. Peter Anvin <hpa@zytor.com>2008-06-09 17:32:43 -0700
commit1803dedae88457520f6c8edbb42f2508b9c30c0e (patch)
tree5d6d1e7057f77acbb4b0300096b73ede57202cf8 /lib
parent5b80b2334666d03e0f9ff673bdbd1c8a24ca8d2b (diff)
downloadnasm-1803dedae88457520f6c8edbb42f2508b9c30c0e.tar.gz
Move all the SAA code out of nasmlib
Move all the SAA code out of nasmlib; it's not used by anything than nasm itself. Cleaning out the kitchen sink known as nasmlib is a good thing, too.
Diffstat (limited to 'lib')
-rw-r--r--lib/vsnprintf.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/vsnprintf.c b/lib/vsnprintf.c
index 976b0eac..f5ae2feb 100644
--- a/lib/vsnprintf.c
+++ b/lib/vsnprintf.c
@@ -14,8 +14,6 @@
#include "nasmlib.h"
-extern efunc nasm_malloc_error;
-
#define BUFFER_SIZE 65536 /* Bigger than any string we might print... */
static char snprintf_buffer[BUFFER_SIZE];