diff options
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/linux_string.h | 8 | ||||
| -rw-r--r-- | include/linux/string.h | 5 | 
2 files changed, 9 insertions, 4 deletions
| diff --git a/include/linux/linux_string.h b/include/linux/linux_string.h new file mode 100644 index 000000000..192b4c9be --- /dev/null +++ b/include/linux/linux_string.h @@ -0,0 +1,8 @@ +#ifndef _LINUX_LINUX_STRING_H_ +#define _LINUX_LINUX_STRING_H_ + +extern char * skip_spaces(const char *); + +extern char *strim(char *); + +#endif diff --git a/include/linux/string.h b/include/linux/string.h index de833554a..e9b134d14 100644 --- a/include/linux/string.h +++ b/include/linux/string.h @@ -50,10 +50,7 @@ extern char * strchr(const char *,int);  #ifndef __HAVE_ARCH_STRRCHR  extern char * strrchr(const char *,int);  #endif -extern char * skip_spaces(const char *); - -extern char *strim(char *); - +#include <linux/linux_string.h>  #ifndef __HAVE_ARCH_STRSTR  extern char * strstr(const char *,const char *);  #endif |