Imported from ../bash-2.01.tar.gz.

This commit is contained in:
Jari Aalto
2009-09-12 16:46:50 +00:00
parent ccc6cda312
commit d166f04881
304 changed files with 14702 additions and 13012 deletions
+4 -3
View File
@@ -105,7 +105,7 @@ strrchr (string, c)
#if !defined (HAVE_STRCASECMP)
#if !defined (to_lower)
# define to_lower(c) (islower(c) ? (c) : toupper(c))
# define to_lower(c) (islower(c) ? (c) : tolower(c))
#endif /* to_lower */
/* Compare at most COUNT characters from string1 to string2. Case
@@ -280,9 +280,10 @@ bzero (s, n)
int n;
{
register int i;
register char *r;
for (i = 0; i < n; i++)
s[i] = '\0';
for (i = 0, r = s; i < n; i++)
*r++ = '\0';
}
#endif