diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-11-18 17:30:06 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-11-18 17:30:06 +0100 |
commit | c298126719dec2f23f56c39e425b96ea6c88a360 (patch) | |
tree | d33b17bf8afb76a3dff19ea64014e8537c862edf /src/string | |
parent | add memmemmove, memmemcpy, wmemmemmove, and wmemmemcpy (diff) | |
download | slibc-c298126719dec2f23f56c39e425b96ea6c88a360.tar.gz slibc-c298126719dec2f23f56c39e425b96ea6c88a360.tar.bz2 slibc-c298126719dec2f23f56c39e425b96ea6c88a360.tar.xz |
whitespace
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/string')
-rw-r--r-- | src/string/strn/strncmp.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/string/strn/strncmp.c b/src/string/strn/strncmp.c index daf5be5..2c078d8 100644 --- a/src/string/strn/strncmp.c +++ b/src/string/strn/strncmp.c @@ -36,4 +36,3 @@ int strncmp(const char* a, const char* b, size_t length) return r ? r : n == m ? 0 : n < m ? -1 : +1; } - |