* sysdeps/unix/sysv/linux/alpha/glob.c: Include sysdeps/generic/glob.c

directly instead of include_next.  Add missing semicolons.
        * sysdeps/unix/sysv/linux/alpha/oldglob.c: Include sys/types.h.
        Add missing semicolons.
This commit is contained in:
Richard Henderson 1998-05-21 01:18:56 +00:00
parent 06c1390ede
commit bde3fab6ee
2 changed files with 7 additions and 6 deletions

View File

@ -17,14 +17,14 @@
/* For Linux/Alpha we have to make the glob symbols versioned. */
#define glob(pattern, flags, errfunc, pglob) \
__new_glob (pattern, flags, errfunc, pglob) \
__new_glob (pattern, flags, errfunc, pglob)
#define globfree(pglob) \
__new_globfree (pglob)
#include_next <glob.c>
#include <sysdeps/generic/glob.c>
#undef glob
#undef globfree
default_symbol_version(__new_glob, glob, GLIBC_2.1)
default_symbol_version(__new_globfree, globfree, GLIBC_2.1)
default_symbol_version(__new_glob, glob, GLIBC_2.1);
default_symbol_version(__new_globfree, globfree, GLIBC_2.1);

View File

@ -17,6 +17,7 @@
/* This file contains only wrappers around the real glob functions. It
became necessary since the glob_t structure changed. */
#include <sys/types.h>
#include <glob.h>
#if defined PIC && DO_VERSIONING
@ -74,7 +75,7 @@ __old_glob (const char *pattern, int flags,
return result;
}
symbol_version(__old_glob, glob, GLIBC_2.0)
symbol_version(__old_glob, glob, GLIBC_2.0);
/* Free storage allocated in PGLOB by a previous `glob' call. */
@ -89,6 +90,6 @@ __old_globfree (old_glob_t *pglob)
globfree (&correct);
}
symbol_version(__old_globfree, globfree, GLIBC_2.0)
symbol_version(__old_globfree, globfree, GLIBC_2.0);
#endif