style fixes, no code changes

This commit is contained in:
Denis Vlasenko
2007-04-16 22:32:04 +00:00
parent 17e3c34aa7
commit ac678ec2f1
13 changed files with 34 additions and 17 deletions

View File

@ -234,7 +234,8 @@ typedef unsigned smalluint;
#endif
#if defined(__dietlibc__)
static ATTRIBUTE_ALWAYS_INLINE char* strchrnul(const char *s, char c) {
static ATTRIBUTE_ALWAYS_INLINE char* strchrnul(const char *s, char c)
{
while (*s && *s != c) ++s;
return (char*)s;
}