Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 11819
b: refs/heads/master
c: cc75fb7
h: refs/heads/master
i:
  11817: 788a698
  11815: 7ea5176
v: v3
  • Loading branch information
Jesper Juhl authored and Linus Torvalds committed Oct 31, 2005
1 parent c69f938 commit 0c3ce4b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 51a0f0f658b0e757d569e8ac224ccb6bbfe3c181
refs/heads/master: cc75fb71c0100d921637a11ded5e333883be5df3
4 changes: 2 additions & 2 deletions trunk/lib/string.c
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ EXPORT_SYMBOL(strlcat);
#undef strcmp
int strcmp(const char *cs, const char *ct)
{
register signed char __res;
signed char __res;

while (1) {
if ((__res = *cs - *ct++) != 0 || !*cs++)
Expand All @@ -239,7 +239,7 @@ EXPORT_SYMBOL(strcmp);
*/
int strncmp(const char *cs, const char *ct, size_t count)
{
register signed char __res = 0;
signed char __res = 0;

while (count) {
if ((__res = *cs - *ct++) != 0 || !*cs++)
Expand Down

0 comments on commit 0c3ce4b

Please sign in to comment.