summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authorPeter Johnson <peter@tortall.net>2003-03-10 08:55:41 +0000
committerPeter Johnson <peter@tortall.net>2003-03-10 08:55:41 +0000
commitd9f68d6d4b92febb4e9c6e7e58c28369bee392dd (patch)
tree4f331f1825c97bb8f085046c1f94be087cf9dfc8 /util.h
parent9d0fa1135cd4629cd5be0b4861331945681cdf6f (diff)
downloadyasm-d9f68d6d4b92febb4e9c6e7e58c28369bee392dd.tar.gz
Unmodularize errwarn, while making key errwarn functions replaceable.
Also removes dependency of libyasm on libintl (gettext), so it can be linked -no-undefined now! svn path=/trunk/yasm/; revision=842
Diffstat (limited to 'util.h')
-rw-r--r--util.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/util.h b/util.h
index 4236844f..8857cdc0 100644
--- a/util.h
+++ b/util.h
@@ -130,8 +130,6 @@ int yasm__strncasecmp(const char *s1, const char *s2, size_t n);
/*@only@*/ char *xstrdup(const char *str);
/* Error-checking memory allocation routines in xmalloc.c. */
-void xalloc_initialize(/*@exits@*/ void (*fatal_func) (int type),
- int nomem_fatal_type);
/*@only@*/ /*@out@*/ void *xmalloc(size_t size);
/*@only@*/ void *xcalloc(size_t nelem, size_t elsize);
/*@only@*/ void *xrealloc(/*@only@*/ /*@out@*/ /*@returned@*/ /*@null@*/