mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-12-27 06:27:51 +00:00
Updated from libc
This commit is contained in:
parent
ffea662953
commit
41e6704efd
1 changed files with 4 additions and 1 deletions
|
@ -106,6 +106,8 @@ extern int errno;
|
|||
#define ANSI_STRING
|
||||
#else /* No standard headers. */
|
||||
|
||||
extern char *getenv ();
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
#include <string.h>
|
||||
#define ANSI_STRING
|
||||
|
@ -496,7 +498,8 @@ glob (pattern, flags, errfunc, pglob)
|
|||
struct stat st;
|
||||
for (i = oldcount; i < pglob->gl_pathc; ++i)
|
||||
if (((flags & GLOB_ALTDIRFUNC) ?
|
||||
*pglob->gl_stat : __stat) (pglob->gl_pathv[i], &st) == 0 &&
|
||||
(*pglob->gl_stat) (pglob->gl_pathv[i], &st) :
|
||||
__stat (pglob->gl_pathv[i], &st)) == 0 &&
|
||||
S_ISDIR (st.st_mode))
|
||||
{
|
||||
size_t len = strlen (pglob->gl_pathv[i]) + 2;
|
||||
|
|
Loading…
Reference in a new issue