string: fix a couple minor issues in strncmp()

This commit is contained in:
Alex Lyon
2018-03-09 20:50:19 -08:00
parent 50f79e9a0e
commit cfc1014c6e
2 changed files with 1 additions and 3 deletions
-2
View File
@@ -9,7 +9,5 @@ int main(int argc, char* argv[]) {
printf("%d\n", strncmp("a", "c", 1));
printf("%d\n", strncmp("a", "a", 2));
puts("test");
return 0;
}