aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-16 22:32:04 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-16 22:32:04 +0000
commit318604b951e5f74ff9889274d82f908ac5818fac (patch)
treef1354d1d4e3ca29b1fd77698d45791e61fd7a8b1 /include
parent00f949b5504f0d5c5dc3bb02da393481980631eb (diff)
downloadbusybox-w32-318604b951e5f74ff9889274d82f908ac5818fac.tar.gz
busybox-w32-318604b951e5f74ff9889274d82f908ac5818fac.tar.bz2
busybox-w32-318604b951e5f74ff9889274d82f908ac5818fac.zip
style fixes, no code changes
git-svn-id: svn://busybox.net/trunk/busybox@18461 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include')
-rw-r--r--include/platform.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/platform.h b/include/platform.h
index 0adbed4e7..ad3cc9332 100644
--- a/include/platform.h
+++ b/include/platform.h
@@ -234,7 +234,8 @@ typedef unsigned smalluint;
234#endif 234#endif
235 235
236#if defined(__dietlibc__) 236#if defined(__dietlibc__)
237static ATTRIBUTE_ALWAYS_INLINE char* strchrnul(const char *s, char c) { 237static ATTRIBUTE_ALWAYS_INLINE char* strchrnul(const char *s, char c)
238{
238 while (*s && *s != c) ++s; 239 while (*s && *s != c) ++s;
239 return (char*)s; 240 return (char*)s;
240} 241}