Subversion Repositories freemyipod

Rev

Rev 113 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 113 Rev 248
Line 61... Line 61...
61
int
61
int
62
_DEFUN (strcmp, (s1, s2),
62
_DEFUN (strcmp, (s1, s2),
63
        _CONST char *s1 _AND
63
        _CONST char *s1 _AND
64
        _CONST char *s2)
64
        _CONST char *s2)
65
{ 
65
{ 
66
#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__)
66
#if defined(PREFER_SIZE_OVER_SPEED)
67
  while (*s1 != '\0' && *s1 == *s2)
67
  while (*s1 != '\0' && *s1 == *s2)
68
    {
68
    {
69
      s1++;
69
      s1++;
70
      s2++;
70
      s2++;
71
    }
71
    }