1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
1999-08-18  Ulrich Drepper  <drepper@cygnus.com>

	* ctype/ctype.h: Avoid useless #endif #if pairs.

	* dirent/dirent.h: Define ino_t and ino64_t if not done already.
	(seekdir): Fix type of second parameter.
	* sysdeps/generic/seekdir.c: Likewise.
	* sysdeps/mach/hurd/seekdir.c: Likewise.
	* sysdeps/unix/seekdir.c: Likewise.

	* dlfcn/dlfcn.h: Define RTLD_NEXT and RTLD_DEFAULT only if __USE_GNU.
This commit is contained in:
Ulrich Drepper
1999-08-18 18:44:33 +00:00
parent ad1b5f1968
commit 70b2845f71
7 changed files with 38 additions and 13 deletions

View File

@ -122,14 +122,11 @@ extern int isascii __P ((int __c));
(i.e., the low-order 7 bits of C). */
extern int toascii __P ((int __c));
#endif /* Use SVID or use misc. */
#if defined __USE_SVID || defined __USE_MISC || defined __USE_XOPEN
/* These are the same as `toupper' and `tolower' except that they do not
check the argument for being in the range of a `char'. */
__exctype (_toupper);
__exctype (_tolower);
#endif
#endif /* Use SVID or use misc. */
#ifndef __NO_CTYPE
# define isalnum(c) __isctype((c), _ISalnum)