Displaying 5 results from an estimated 5 matches for "__ctype_toupper".
2012 Mar 11
0
[PATCH 2/3] fix missing prototypes for ctype inline functions
...isupper(int);
+__must_inline int __ctype_isxdigit(int);
+
__must_inline int __ctype_isalnum(int __c)
{
return __ctypes[__c + 1] &
@@ -118,6 +132,9 @@ __must_inline int __ctype_isxdigit(int __c)
#define _toupper(__c) ((__c) & ~32)
#define _tolower(__c) ((__c) | 32)
+__must_inline int __ctype_toupper(int);
+__must_inline int __ctype_tolower(int);
+
__must_inline int __ctype_toupper(int __c)
{
return __ctype_islower(__c) ? _toupper(__c) : __c;
--
1.7.9.1
2009 Jul 16
2
[PATCH 1/2] Fix must_inline macro in klibc/compiler.h for gcc-4.3
See http://gcc.gnu.org/gcc-4.3/porting_to.html for details.
Signed-off-by: Jon Ringle <jon at ringle.org>
---
usr/include/klibc/compiler.h | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/usr/include/klibc/compiler.h b/usr/include/klibc/compiler.h
index 816a4ee..e0da37e 100644
--- a/usr/include/klibc/compiler.h
+++ b/usr/include/klibc/compiler.h
@@ -24,7 +24,11
2003 Jun 19
0
flashpluginwrapper for Flash 6 (Shared Library Tools redux)
...en modified flashpluginwrapper to add the
following functions:
void __assert_fail(const char *assertion, const char *file,
unsigned int line, const char *function)
{
fprint (stderr, "%s:%d:%s: %s\n", file, line, function, assertion);
abort ();
}
#include <ctype.h>
int __ctype_toupper(int c)
{
return toupper (c);
}
unsigned short int __ctype_b[256];
#include <errno.h>
int *__errno_location(void)
{
return __error ();
}
unsigned long int __strtoul_internal(const char *__nptr, char **__endptr,
int __base, int __group)
{
return strtoul (__nptr, __endptr, __...
2005 Sep 07
1
Compiling Apache 2.0.54 on CentOS 4.1
...ewSpine/apache2.src/httpd-
2.0.54/server/util_script.c:540: more undefined references to `__ctype_b'
follow
server/.libs/libmain.a(util_filter.o)(.text+0x2aa): In function
`register_filter':
/scratch/fong/newSpine/apache2.src/httpd-2.0.54/server/util_filter.c:219:
undefined reference to `__ctype_toupper'
server/.libs/libmain.a(protocol.o)(.text+0x842): In function
`read_request_line':
/scratch/fong/newSpine/apache2.src/httpd-2.0.54/server/protocol.c:630:
undefined reference to `__ctype_b'
collect2: ld returned 1 exit status
make[1]: *** [httpd] Error 1
-------------- next part ------...
2012 May 15
5
[PATCH 0/5] resubmitting pending patches
Hi,
I?ve gone through the mailing list archives and hereby want
to resubmit my pending patches. Most are independent of each
other, except the m68k patch which will only be complete if
sigsuspend is also fixed. (It can be applied before that,
though.)
http://www.zytor.com/pipermail/klibc/2012-January/003173.html
[PATCH] fix m68k support
Resubmitted here as 0005. While there was a question from