.
authorJim Meyering <jim@meyering.net>
Sat, 25 Oct 1997 21:49:45 +0000 (21:49 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 25 Oct 1997 21:49:45 +0000 (21:49 +0000)
lib/xalloc.h [new file with mode: 0644]

diff --git a/lib/xalloc.h b/lib/xalloc.h
new file mode 100644 (file)
index 0000000..a66226d
--- /dev/null
@@ -0,0 +1,20 @@
+#undef PARAMS
+#if defined (__STDC__) && __STDC__
+# define PARAMS(Args) Args
+#else
+# define PARAMS(Args) ()
+#endif
+
+/* Exit value when the requested amount of memory is not available.
+   The caller may set it to some other value.  */
+extern int xalloc_exit_failure;
+
+/* FIXME: describe */
+extern char *const xalloc_msg_memory_exhausted;
+
+/* FIXME: describe */
+extern void (*xalloc_fail_func) ();
+
+void *xmalloc PARAMS ((size_t n));
+void *xcalloc PARAMS ((size_t n, size_t s));
+void *xrealloc PARAMS ((void *p, size_t n));