blob: 82284546f653551d8ae00c1e33111d5c82b8175d [file] [log] [blame]
extern void abort (void);
extern int inside_main;
__attribute__ ((__noinline__))
int
strcmp (const char *s1, const char *s2)
{
#ifdef __OPTIMIZE__
if (inside_main)
abort ();
#endif
while (*s1 != 0 && *s1 == *s2)
s1++, s2++;
if (*s1 == 0 || *s2 == 0)
return (unsigned char) *s1 - (unsigned char) *s2;
return *s1 - *s2;
}