diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-07-03 06:43:07 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-07-03 06:43:07 +0000 |
commit | 8b0a2afe9f57016e0d740aab36ff1a283832c703 (patch) | |
tree | 69de989f7575fcbab854a14c5cac3d57778e4106 /m4 | |
parent | 9c17ef9a811b78f3b1aa432e3e83e609869238f4 (diff) | |
download | coreutils-8b0a2afe9f57016e0d740aab36ff1a283832c703.tar.xz |
Add support for fcntl--.h, stdio--.h, stdlib--.h, unistd--.h, etc.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/fcntl-safer.m4 | 11 | ||||
-rw-r--r-- | m4/stdlib-safer.m4 | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/m4/fcntl-safer.m4 b/m4/fcntl-safer.m4 new file mode 100644 index 000000000..465e640f9 --- /dev/null +++ b/m4/fcntl-safer.m4 @@ -0,0 +1,11 @@ +# fcntl-safer.m4 serial 1 +dnl Copyright (C) 2005 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_FCNTL_SAFER], +[ + AC_LIBSOURCES([open-safer.c, fcntl-safer.h]) + AC_LIBOBJ([open-safer]) +]) diff --git a/m4/stdlib-safer.m4 b/m4/stdlib-safer.m4 new file mode 100644 index 000000000..fbbaecb74 --- /dev/null +++ b/m4/stdlib-safer.m4 @@ -0,0 +1,11 @@ +# stdlib-safer.m4 serial 1 +dnl Copyright (C) 2005 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_STDLIB_SAFER], +[ + AC_LIBSOURCES([mkstemp-safer.c, stdlib-safer.h]) + AC_LIBOBJ([mkstemp-safer]) +]) |