[FIX_RED] microtar.c #2

Change-Id: I22fe42de595c2d31c8720c5bae115e69849f6e28
This commit is contained in:
William Wilgus 2023-11-19 13:20:35 -05:00
parent 58707b0429
commit 92e77ddbd8

View file

@ -27,7 +27,7 @@
#ifndef strcmp #ifndef strcmp
#define strcmp my_strcmp #define strcmp my_strcmp
static int my strcmp(const char *s1, const char *s2) static int my_strcmp(const char *s1, const char *s2)
{ {
while (*s1 != '\0' && *s1 == *s2) { while (*s1 != '\0' && *s1 == *s2) {
s1++; s1++;