diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ChangeLog | 5 | ||||
-rw-r--r-- | lib/euidaccess-stat.h | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog index e02f9cdde..dc8ede2c7 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,8 @@ +2005-11-20 Jim Meyering <jim@meyering.net> + + * euidaccess-stat.c: New file, mostly from euidaccess.c. + * euidaccess-stat.h: New file. + 2005-11-15 Paul Eggert <eggert@cs.ucla.edu> * xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as diff --git a/lib/euidaccess-stat.h b/lib/euidaccess-stat.h new file mode 100644 index 000000000..de2496118 --- /dev/null +++ b/lib/euidaccess-stat.h @@ -0,0 +1,5 @@ +#include <sys/types.h> +#include <sys/stat.h> +#include <stdbool.h> + +bool euidaccess_stat (struct stat const *st, int mode); |