diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-06-17 13:34:04 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-06-17 13:34:04 +0000 |
| commit | a898728c542e3609327c93a761c95e981a34161e (patch) | |
| tree | 90d3faf7b3eaf9968240db78207327921bb95c6d /firmware/include/string.h | |
| parent | 0c7ebc4c96995a74a37df24145017199261121ad (diff) | |
| download | rockbox-a898728c542e3609327c93a761c95e981a34161e.zip rockbox-a898728c542e3609327c93a761c95e981a34161e.tar.gz rockbox-a898728c542e3609327c93a761c95e981a34161e.tar.bz2 rockbox-a898728c542e3609327c93a761c95e981a34161e.tar.xz | |
fixed to work
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1039 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/include/string.h')
| -rw-r--r-- | firmware/include/string.h | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/firmware/include/string.h b/firmware/include/string.h index e85dac3..e9aa24c 100644 --- a/firmware/include/string.h +++ b/firmware/include/string.h @@ -12,7 +12,6 @@ extern "C" { #endif #include "_ansi.h" -#include <sys/reent.h> #define __need_size_t #include <stddef.h> @@ -51,20 +50,10 @@ size_t _EXFUN(strxfrm,(char *, const char *, size_t)); #ifndef __STRICT_ANSI__ char *_EXFUN(strtok_r,(char *, const char *, char **)); -int _EXFUN(bcmp,(const char *, const char *, size_t)); -void _EXFUN(bcopy,(const char *, char *, size_t)); -void _EXFUN(bzero,(char *, size_t)); -int _EXFUN(ffs,(int)); -char *_EXFUN(index,(const char *, int)); _PTR _EXFUN(memccpy,(_PTR, const _PTR, int, size_t)); -char *_EXFUN(rindex,(const char *, int)); int _EXFUN(strcasecmp,(const char *, const char *)); -char *_EXFUN(strdup,(const char *)); -char *_EXFUN(_strdup_r,(struct _reent *, const char *)); int _EXFUN(strncasecmp,(const char *, const char *, size_t)); -char *_EXFUN(strsep,(char **, const char *)); -char *_EXFUN(strlwr,(char *)); -char *_EXFUN(strupr,(char *)); + #ifdef __CYGWIN__ #ifndef DEFS_H /* Kludge to work around problem compiling in gdb */ const char *_EXFUN(strsignal, (int __signo)); |