mirror of
https://git.savannah.gnu.org/git/make.git
synced 2025-01-30 11:11:52 +00:00
Updated from libc
This commit is contained in:
parent
41177916df
commit
c18253b59b
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Sat Apr 29 15:46:57 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
||||||
|
|
||||||
|
* posix/glob.c (S_ISDIR): Define if undefined.
|
||||||
|
|
||||||
Tue Apr 25 17:17:19 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
Tue Apr 25 17:17:19 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
||||||
|
|
||||||
* posix/glob.c (glob): If GLOB_MARK set, stat names to find
|
* posix/glob.c (glob): If GLOB_MARK set, stat names to find
|
||||||
|
|
|
@ -181,6 +181,8 @@ extern char *alloca ();
|
||||||
#endif
|
#endif
|
||||||
#ifdef STAT_MACROS_BROKEN
|
#ifdef STAT_MACROS_BROKEN
|
||||||
#undef S_ISDIR
|
#undef S_ISDIR
|
||||||
|
#endif
|
||||||
|
#ifndef S_ISDIR
|
||||||
#define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
|
#define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue