diff options
author | Andreas Jaeger <aj@suse.de> | 2001-02-06 18:27:57 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-02-06 18:27:57 +0000 |
commit | bd7f30a9b76479a7652a3c2245f98bd04852bb8e (patch) | |
tree | e099132e3bcec14a88809f80f4449b613106a9a5 /string/string.h | |
parent | eb8ea10ab211e5fc01bb7b37d862ee096eab3a4e (diff) | |
download | glibc-bd7f30a9b76479a7652a3c2245f98bd04852bb8e.tar.gz glibc-bd7f30a9b76479a7652a3c2245f98bd04852bb8e.tar.xz glibc-bd7f30a9b76479a7652a3c2245f98bd04852bb8e.zip |
Update.
2001-02-06 Andreas Jaeger <aj@suse.de> * include/pthread.h: New file. * wctype/wctype.h: Move internal interfaces from here to... * include/wctype.h: ...here. * wcsmbs/wchar.h: Move __wcslen from here to... * include/wchar.h: ...here. * posix/sys/wait.h: Move __wait from here to... * include/sys/wait.h: ...here. * string/string.h: Move __ffs and __strerror_r from here to... * include/string.h: ...here. * stdlib/stdlib.h: Move __on_exit from here to... * include/stdlib.h: ...here. * libio/stdio.h: Move __vsnprintf from here to... * include/stdio.h: ...here.
Diffstat (limited to 'string/string.h')
-rw-r--r-- | string/string.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/string/string.h b/string/string.h index 3491170ab5..6aee6e12ea 100644 --- a/string/string.h +++ b/string/string.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991,92,93,95,96,97,98,99, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1991,92,93,95,96,97,98,99,2000,2001 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -230,7 +230,6 @@ extern char *strerror (int __errnum) __THROW; #ifdef __USE_MISC /* Reentrant version of `strerror'. If a temporary buffer is required, at most BUFLEN bytes of BUF will be used. */ -extern char *__strerror_r (int __errnum, char *__buf, size_t __buflen) __THROW; extern char *strerror_r (int __errnum, char *__buf, size_t __buflen) __THROW; #endif @@ -257,7 +256,6 @@ extern char *rindex (__const char *__s, int __c) __THROW __attribute_pure__; /* Return the position of the first bit set in I, or 0 if none are set. The least-significant bit is position 1, the most-significant 32. */ -extern int __ffs (int __i) __THROW __attribute__ ((const)); extern int ffs (int __i) __THROW __attribute__ ((const)); /* The following two functions are non-standard but necessary for non-32 bit |