summaryrefslogtreecommitdiff
path: root/m4/xalloc.m4
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2012-12-21 14:22:22 +0000
committerSam Thursfield <Sam Thursfield>2013-01-03 11:32:53 +0000
commitc2693d6d08db26825688ddca5de6eb8a4b7cde4a (patch)
tree10611dcf065b1893421b83a9de53cf6feb83a048 /m4/xalloc.m4
parent861325a84f231a2a2da307b53ef5ff527d67e876 (diff)
downloadm4-c2693d6d08db26825688ddca5de6eb8a4b7cde4a.tar.gz
Commit files from tarball
Diffstat (limited to 'm4/xalloc.m4')
-rw-r--r--m4/xalloc.m424
1 files changed, 24 insertions, 0 deletions
diff --git a/m4/xalloc.m4 b/m4/xalloc.m4
new file mode 100644
index 00000000..49008208
--- /dev/null
+++ b/m4/xalloc.m4
@@ -0,0 +1,24 @@
+# xalloc.m4 serial 16
+dnl Copyright (C) 2002-2006, 2009-2011 Free Software Foundation, Inc.
+dnl This file is free software; the Free Software Foundation
+dnl gives unlimited permission to copy and/or distribute it,
+dnl with or without modifications, as long as this notice is preserved.
+
+AC_DEFUN([gl_XALLOC],
+[
+ AC_LIBOBJ([xmalloc])
+
+ gl_PREREQ_XALLOC
+ gl_PREREQ_XMALLOC
+])
+
+# Prerequisites of lib/xalloc.h.
+AC_DEFUN([gl_PREREQ_XALLOC], [
+ AC_REQUIRE([gl_INLINE])
+ :
+])
+
+# Prerequisites of lib/xmalloc.c.
+AC_DEFUN([gl_PREREQ_XMALLOC], [
+ :
+])