diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/mach/hurd/enbl-secure.c | 7 |
2 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index a3bc654f65..a8e2c27c1f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2017-08-02 Samuel Thibault <samuel.thibault@ens-lyon.org> + + * sysdeps/mach/hurd/enbl-secure.c (__libc_init_secure): Define + function. + 2017-08-02 Joseph Myers <joseph@codesourcery.com> [BZ #21686] diff --git a/sysdeps/mach/hurd/enbl-secure.c b/sysdeps/mach/hurd/enbl-secure.c index 9aeb0fafa6..87a8f93013 100644 --- a/sysdeps/mach/hurd/enbl-secure.c +++ b/sysdeps/mach/hurd/enbl-secure.c @@ -21,3 +21,10 @@ In the shared library, the `__libc_enable_secure' variable is defined by the dynamic linker in dl-sysdep.c and set there. In the static library, it is defined in init-first.c and set there. */ + +#include <libc-internal.h> + +void +__libc_init_secure (void) +{ +} |