X-Git-Url: https://git.wh0rd.org/?p=dump.git;a=blobdiff_plain;f=compat%2Flib%2Fcompatglob.c;h=23fc61c9af346a7fd4d6ab16720b8ce4b698351f;hp=4b70101fdea27fab1de9056d15555217fe13aa96;hb=5d2a3d246d400d45dfd4c49ddb588c69fb60873d;hpb=e51470bfc05d83f82c37d24504220c7163bbd4c1 diff --git a/compat/lib/compatglob.c b/compat/lib/compatglob.c index 4b70101..23fc61c 100644 --- a/compat/lib/compatglob.c +++ b/compat/lib/compatglob.c @@ -69,7 +69,7 @@ #ifndef lint static const char rcsid[] = - "$Id: compatglob.c,v 1.7 2002/01/16 09:32:14 stelian Exp $"; + "$Id: compatglob.c,v 1.8 2002/01/25 15:08:59 stelian Exp $"; #endif /* not lint */ #include @@ -564,7 +564,7 @@ glob2(Char *pathbuf, Char *pathend, Char *pattern, glob_t *pglob) static int glob3(Char *pathbuf, Char *pathend, Char *pattern, Char *restpattern, glob_t *pglob) { - register struct dirent *dp; + struct dirent *dp; DIR *dirp; int err; char buf[MAXPATHLEN]; @@ -599,8 +599,8 @@ glob3(Char *pathbuf, Char *pathend, Char *pattern, Char *restpattern, glob_t *pg else readdirfunc = readdir; while ((dp = (*readdirfunc)(dirp))) { - register u_char *sc; - register Char *dc; + u_char *sc; + Char *dc; /* Initial DOT must be matched literally. */ if (dp->d_name[0] == DOT && *pattern != DOT) @@ -642,8 +642,8 @@ glob3(Char *pathbuf, Char *pathend, Char *pattern, Char *restpattern, glob_t *pg static int globextend(const Char *path, glob_t *pglob) { - register char **pathv; - register int i; + char **pathv; + int i; u_int newsize; char *copy; const Char *p; @@ -727,8 +727,8 @@ match(Char *name, Char *pat, Char *patend) void globfree(glob_t *pglob) { - register int i; - register char **pp; + int i; + char **pp; if (pglob->gl_pathv != NULL) { pp = pglob->gl_pathv + pglob->gl_offs; @@ -806,7 +806,7 @@ g_strcat(Char *dst, const Char *src) static void g_Ctoc(const Char *str, char *buf) { - register char *dc; + char *dc; for (dc = buf; (*dc++ = *str++) != EOS;) continue; @@ -816,7 +816,7 @@ g_Ctoc(const Char *str, char *buf) static void qprintf(const char *str, Char *s) { - register Char *p; + Char *p; (void)printf("%s:\n", str); for (p = s; *p; p++)