aboutsummaryrefslogtreecommitdiffstats
path: root/lib/explicit_bzero.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/explicit_bzero.c')
-rw-r--r--lib/explicit_bzero.c4
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. */