diff options
author | Bruno Haible <bruno@clisp.org> | 2010-07-12 18:54:13 +0200 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2010-07-12 18:57:52 +0200 |
commit | 5518d301980bdc0f60b1b5d58b140004dfda490e (patch) | |
tree | cfcfab3add996d1acfdaaa9443d5411b8b226c55 /modules | |
parent | 3458f09caac5234831a315d073344fc898dde077 (diff) | |
download | gnulib-5518d301980bdc0f60b1b5d58b140004dfda490e.tar.gz |
New module '_Exit'.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/_Exit | 24 | ||||
-rw-r--r-- | modules/stdlib | 2 |
2 files changed, 26 insertions, 0 deletions
diff --git a/modules/_Exit b/modules/_Exit new file mode 100644 index 0000000000..2b5cc084b2 --- /dev/null +++ b/modules/_Exit @@ -0,0 +1,24 @@ +Description: +_Exit() function: terminate current process. + +Files: +lib/_Exit.c +m4/_Exit.m4 + +Depends-on: +stdlib + +configure.ac: +gl_FUNC__EXIT +gl_STDLIB_MODULE_INDICATOR([_Exit]) + +Makefile.am: + +Include: +<stdlib.h> + +License: +LGPL + +Maintainer: +all diff --git a/modules/stdlib b/modules/stdlib index 7af315fd48..489f70a1a5 100644 --- a/modules/stdlib +++ b/modules/stdlib @@ -28,6 +28,7 @@ stdlib.h: stdlib.in.h $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''NEXT_STDLIB_H''@|$(NEXT_STDLIB_H)|g' \ + -e 's|@''GNULIB__EXIT''@|$(GNULIB__EXIT)|g' \ -e 's|@''GNULIB_ATOLL''@|$(GNULIB_ATOLL)|g' \ -e 's|@''GNULIB_CALLOC_POSIX''@|$(GNULIB_CALLOC_POSIX)|g' \ -e 's|@''GNULIB_CANONICALIZE_FILE_NAME''@|$(GNULIB_CANONICALIZE_FILE_NAME)|g' \ @@ -52,6 +53,7 @@ stdlib.h: stdlib.in.h $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) -e 's|@''GNULIB_STRTOULL''@|$(GNULIB_STRTOULL)|g' \ -e 's|@''GNULIB_UNLOCKPT''@|$(GNULIB_UNLOCKPT)|g' \ -e 's|@''GNULIB_UNSETENV''@|$(GNULIB_UNSETENV)|g' \ + -e 's|@''HAVE__EXIT''@|$(HAVE__EXIT)|g' \ -e 's|@''HAVE_ATOLL''@|$(HAVE_ATOLL)|g' \ -e 's|@''HAVE_CANONICALIZE_FILE_NAME''@|$(HAVE_CANONICALIZE_FILE_NAME)|g' \ -e 's|@''HAVE_DECL_GETLOADAVG''@|$(HAVE_DECL_GETLOADAVG)|g' \ |