summaryrefslogtreecommitdiff
path: root/ctype
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-08-18 18:44:33 +0000
committerUlrich Drepper <drepper@redhat.com>1999-08-18 18:44:33 +0000
commit70b2845f71c1fb6bd5ec3ef325974b6a90cdb45c (patch)
tree8f3322b07a111d14b3ff960a5abd5d48422358b1 /ctype
parentad1b5f19680f923691a5674c132c4c36e9b162f5 (diff)
Update.
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.
Diffstat (limited to 'ctype')
-rw-r--r--ctype/ctype.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/ctype/ctype.h b/ctype/ctype.h
index a0d840162e..6ea0af0a78 100644
--- a/ctype/ctype.h
+++ b/ctype/ctype.h
@@ -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)