diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-11-29 00:04:54 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-11-29 00:04:54 +0000 |
commit | 20bb288327254c60dcf7f28ad3ea22c48cffcc58 (patch) | |
tree | 9d317f8044d64112c5112ef088688f366864726e /ctype | |
parent | 5eefad82e96d213f69e216857ad638dab981f705 (diff) | |
download | glibc-20bb288327254c60dcf7f28ad3ea22c48cffcc58.tar glibc-20bb288327254c60dcf7f28ad3ea22c48cffcc58.tar.gz glibc-20bb288327254c60dcf7f28ad3ea22c48cffcc58.tar.bz2 glibc-20bb288327254c60dcf7f28ad3ea22c48cffcc58.zip |
Update.
* dlfcn/defaultmod1.c: Add prototypes to avoid warnings.
* dlfcn/defaultmod2.c: Likewise.
* dlfcn/dlopen.c: Likewise.
* dlfcn/dlopenold.c: Likewise.
* dlfcn/failtestmod.c: Likewise.
* dlfcn/glreflib1.c: Likewise.
* dlfcn/glreflib2.c: Likewise.
* dlfcn/eval.c: Likewise. Add attributes.
* ctype/ctype-extn.c: Define isblank and not __isblank.
Diffstat (limited to 'ctype')
-rw-r--r-- | ctype/ctype-extn.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ctype/ctype-extn.c b/ctype/ctype-extn.c index cfc8b87d41..2177df020a 100644 --- a/ctype/ctype-extn.c +++ b/ctype/ctype-extn.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1997, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1997, 1999, 2000 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 @@ -19,14 +19,14 @@ #define __NO_CTYPE #include <ctype.h> -/* Real function versions of the non-ANSI ctype functions. */ +/* Real function versions of the non-ANSI ctype functions. isblank is + now in ISO C99 but we leave it here. */ int -__isblank (int c) +isblank (int c) { return __isctype (c, _ISblank); } -weak_alias (__isblank, isblank) int _tolower (int c) |