diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-06-09 17:32:43 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-06-09 17:32:43 -0700 |
commit | 1803dedae88457520f6c8edbb42f2508b9c30c0e (patch) | |
tree | 5d6d1e7057f77acbb4b0300096b73ede57202cf8 /lib | |
parent | 5b80b2334666d03e0f9ff673bdbd1c8a24ca8d2b (diff) | |
download | nasm-1803dedae88457520f6c8edbb42f2508b9c30c0e.tar.gz nasm-1803dedae88457520f6c8edbb42f2508b9c30c0e.tar.bz2 nasm-1803dedae88457520f6c8edbb42f2508b9c30c0e.zip |
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.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/vsnprintf.c b/lib/vsnprintf.c index 976b0ea..f5ae2fe 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]; |