diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-07 21:53:31 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-07 21:53:31 +0000 |
commit | a3a8a3df15ba3bfeaad5a3fa695b1736c2a33fd1 (patch) | |
tree | 12540ed2bdf09e822d8d7262f4f4319edd0771c7 /libiberty/xatexit.c | |
parent | 9bccb7a35c3537745d3a9d597764aa8f78032bb9 (diff) | |
download | gcc-a3a8a3df15ba3bfeaad5a3fa695b1736c2a33fd1.tar.gz |
* alloca.c, clock.c, getcwd.c, getpagesize.c, getpwd.c, index.c,
libiberty.texi, memchr.c, putenv.c, rindex.c, strchr.c, strdup.c,
strerror.c, strrchr.c, strstr.c, strtod.c, tmpnam.c, vfork.c,
xatexit.c, xmalloc.c, xstrerror.c: Improve manual formatting. Fix
spelling. Give names to function arguments in documentation. Use
(void) prototypes in documentation.
* functions.texi: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46068 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty/xatexit.c')
-rw-r--r-- | libiberty/xatexit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/xatexit.c b/libiberty/xatexit.c index 6d983a894f4..728254b2c0d 100644 --- a/libiberty/xatexit.c +++ b/libiberty/xatexit.c @@ -11,7 +11,7 @@ @deftypefun int xatexit (void (*@var{fn}) (void)) Behaves as the standard @code{atexit} function, but with no limit on -the number of registered functions. Returns 0 on success, or -1 on +the number of registered functions. Returns 0 on success, or @minus{}1 on failure. If you use @code{xatexit} to register functions, you must use @code{xexit} to terminate your program. |