Index: fusl/src/string/strpbrk.c |
diff --git a/fusl/src/string/strpbrk.c b/fusl/src/string/strpbrk.c |
index 55947c641b869f7f75a6ce8aa8f3110aedb70832..c546a400f3653fd35852117593fe87926824c431 100644 |
--- a/fusl/src/string/strpbrk.c |
+++ b/fusl/src/string/strpbrk.c |
@@ -1,7 +1,6 @@ |
#include <string.h> |
-char *strpbrk(const char *s, const char *b) |
-{ |
- s += strcspn(s, b); |
- return *s ? (char *)s : 0; |
+char* strpbrk(const char* s, const char* b) { |
+ s += strcspn(s, b); |
+ return *s ? (char*)s : 0; |
} |