diff options
| author | Paul Eggert | 2018-10-08 18:21:47 -0700 |
|---|---|---|
| committer | Paul Eggert | 2018-10-08 18:22:22 -0700 |
| commit | cf1ebfa055fcd0749aa4ed2fc4c399470b9eb3de (patch) | |
| tree | 8af8b5c52560c91b2094dae951b082c370496aea /lib/explicit_bzero.c | |
| parent | fc6004e61760d3bd3e27b593c318e634a221652c (diff) | |
| download | emacs-cf1ebfa055fcd0749aa4ed2fc4c399470b9eb3de.tar.gz emacs-cf1ebfa055fcd0749aa4ed2fc4c399470b9eb3de.zip | |
Update from Gnulib
This incorporates:
2018-10-05 explicit_bzero: make it possible to namespace
2018-10-04 fcntl: make it possible to namespace
2018-10-01 mkostemp, mkostemps: fix C++ compilation on Mac OS X
2018-09-19 maint: mktime.c now shared with glibc
2018-09-18 file-has-acl: fix test failure on Cygwin 2.9
2018-09-18 gettime: nanotime never existed
* admin/merge-gnulib (AVOIDED_MODULES): Add mkdir.
* doc/misc/texinfo.tex, lib/acl-internal.c, lib/acl-internal.h:
* lib/acl_entries.c, lib/explicit_bzero.c, lib/fcntl.c:
* lib/get-permissions.c, lib/gettime.c, lib/mktime.c:
* lib/set-permissions.c, lib/stdlib.in.h, m4/acl.m4, m4/gettime.m4:
Copy from Gnulib.
* lib/gnulib.mk.in: Regenerate.
Diffstat (limited to 'lib/explicit_bzero.c')
| -rw-r--r-- | lib/explicit_bzero.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/explicit_bzero.c b/lib/explicit_bzero.c index 78ec747c3a6..79b7fd66b66 100644 --- a/lib/explicit_bzero.c +++ b/lib/explicit_bzero.c | |||
| @@ -27,9 +27,11 @@ | |||
| 27 | 27 | ||
| 28 | #include <string.h> | 28 | #include <string.h> |
| 29 | 29 | ||
| 30 | #if _LIBC | ||
| 30 | /* glibc-internal users use __explicit_bzero_chk, and explicit_bzero | 31 | /* glibc-internal users use __explicit_bzero_chk, and explicit_bzero |
| 31 | redirects to that. */ | 32 | redirects to that. */ |
| 32 | #undef explicit_bzero | 33 | # undef explicit_bzero |
| 34 | #endif | ||
| 33 | 35 | ||
| 34 | /* Set LEN bytes of S to 0. The compiler will not delete a call to | 36 | /* Set LEN bytes of S to 0. The compiler will not delete a call to |
| 35 | this function, even if S is dead after the call. */ | 37 | this function, even if S is dead after the call. */ |