diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2016-09-07 17:04:49 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2016-09-07 18:10:11 -0700 |
commit | 12a7e0f88eaa68aabe7e32589e2d5c8f776f6346 (patch) | |
tree | ac3b18f919ab71149b7fe50fdcaf7a953cced651 /lib/euidaccess.c | |
parent | a08ce41ed8e9fd8768dcd1ecd22ff6bc4c4c7f8f (diff) | |
download | emacs-12a7e0f88eaa68aabe7e32589e2d5c8f776f6346.tar.gz |
Update from gnulib
This incorporates:
2016-09-07 flexmember: new macro FLEXALIGNOF
2016-09-07 flexmember: port better to GCC + valgrind
2016-08-18 Port modules to use getprogname explicitly
2016-09-02 manywarnings: add -fno-common
* admin/merge-gnulib (GNULIB_TOOL_FLAGS): Don’t avoid flexmember,
since time_rz now uses part of it. Instead, remove m4/flexmember.m4.
* configure.ac (AC_C_FLEXIBLE_ARRAY_MEMBER): Define away,
since Emacs assumes C99 and therefore removes m4/flexmember.m4.
* lib/euidaccess.c, lib/group-member.c, lib/time_rz.c:
* m4/manywarnings.m4: Copy from gnulib.
* lib/flexmember.h: New file, from gnulib.
* lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
Diffstat (limited to 'lib/euidaccess.c')
-rw-r--r-- | lib/euidaccess.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/euidaccess.c b/lib/euidaccess.c index 82af9417ac3..e9eb0e948a3 100644 --- a/lib/euidaccess.c +++ b/lib/euidaccess.c @@ -197,8 +197,6 @@ weak_alias (__euidaccess, euidaccess) # include <stdio.h> # include <stdlib.h> -char *program_name; - int main (int argc, char **argv) { @@ -206,7 +204,6 @@ main (int argc, char **argv) int mode; int err; - program_name = argv[0]; if (argc < 3) abort (); file = argv[1]; |