diff options
author | wdenk <wdenk> | 2004-03-23 22:37:33 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-03-23 22:37:33 +0000 |
commit | 27aa818670ad6776546ee3c1ad339b68866368ef (patch) | |
tree | ad47a46c25295a84f754f15483f5505cc5ed3b43 /include | |
parent | 4b9206ed51a3e3dc06dca2a3930a24e4f0025f3d (diff) | |
download | u-boot-imx-27aa818670ad6776546ee3c1ad339b68866368ef.zip u-boot-imx-27aa818670ad6776546ee3c1ad339b68866368ef.tar.gz u-boot-imx-27aa818670ad6776546ee3c1ad339b68866368ef.tar.bz2 |
* Patch by Carl Riechers, 17 Mar 2004:
Ignore '\0' characters in console input for use with telnet and
telco pads.
* Patch by Leon Kukovec, 17 Mar 2004:
typo fix for strswab prototype #ifdef
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/string.h b/include/linux/string.h index 403ae98..1a45fd3 100644 --- a/include/linux/string.h +++ b/include/linux/string.h @@ -59,7 +59,7 @@ extern __kernel_size_t strnlen(const char *,__kernel_size_t); #ifndef __HAVE_ARCH_STRDUP extern char * strdup(const char *); #endif -#ifdef __HAVE_ARCH_STRSWAB +#ifndef __HAVE_ARCH_STRSWAB extern char * strswab(const char *); #endif |