diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-16 22:32:04 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-16 22:32:04 +0000 |
commit | ac678ec2f127fc02a93fff2c164e0b13a94a6abf (patch) | |
tree | f1354d1d4e3ca29b1fd77698d45791e61fd7a8b1 /include/platform.h | |
parent | 17e3c34aa7abe42aa604234235338e2b8087b8a0 (diff) | |
download | busybox-w32-ac678ec2f127fc02a93fff2c164e0b13a94a6abf.tar.gz busybox-w32-ac678ec2f127fc02a93fff2c164e0b13a94a6abf.tar.bz2 busybox-w32-ac678ec2f127fc02a93fff2c164e0b13a94a6abf.zip |
style fixes, no code changes
Diffstat (limited to 'include/platform.h')
-rw-r--r-- | include/platform.h | 3 |
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__) |
237 | static ATTRIBUTE_ALWAYS_INLINE char* strchrnul(const char *s, char c) { | 237 | static 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 | } |