diff options
author | greg@kroah.com <greg@kroah.com> | 2003-10-22 23:48:55 -0700 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:06:22 -0700 |
commit | 1e959a4b05f93bf31d0603a027b50cb148ef7e90 (patch) | |
tree | 535e27110fb4f6359466cbbaf2bda0e0d00b84cc /klibc.c | |
parent | c8ba857171bd09a0019d3182fe989c6cf06d98d2 (diff) |
[PATCH] klibc specific tweaks
Diffstat (limited to 'klibc.c')
-rw-r--r-- | klibc.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/klibc.c b/klibc.c new file mode 100644 index 0000000000..a5d5d5948a --- /dev/null +++ b/klibc.c @@ -0,0 +1,33 @@ + +#ifdef __KLIBC__ + +#include <stdlib.h> +#include <string.h> +#include <ctype.h> + +char *strerror(int errnum) +{ + return "some error"; +} + +int strcasecmp(const char *s1, const char *s2) +{ + char *n1; + char *n2; + int retval; + int i; + + n1 = strdup(s1); + n2 = strdup(s2); + + for (i = 0; i < strlen(n1); ++i) + n1[i] = toupper(n1[i]); + for (i = 0; i < strlen(n2); ++i) + n2[i] = toupper(n2[i]); + retval = strcmp(n1, n2); + free(n1); + free(n2); + return retval; +} + +#endif |