diff options
Diffstat (limited to 'src/string/strcmp.c')
-rw-r--r-- | src/string/strcmp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string/strcmp.c b/src/string/strcmp.c index 8925d1be..e447eb31 100644 --- a/src/string/strcmp.c +++ b/src/string/strcmp.c @@ -2,6 +2,7 @@ #include "_assert.h" /** compare strings **/ + int strcmp(const char *s1, const char *s2) { ASSERT_NONNULL(s1); @@ -35,6 +36,7 @@ int strcmp(const char *s1, const char *s2) /*** compares the strings at ARGUMENT(s1) and ARGUMENT(s2). ***/ + /* STDC(1) */ |