summary refs log tree commit diff
path: root/stdlib/secure-getenv.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/secure-getenv.c')
-rw-r--r--stdlib/secure-getenv.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/stdlib/secure-getenv.c b/stdlib/secure-getenv.c
index d9c2f10039..75a781b3d0 100644
--- a/stdlib/secure-getenv.c
+++ b/stdlib/secure-getenv.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1992, 1994, 1996 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1992, 1994, 1996, 2002 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -28,3 +28,4 @@ __secure_getenv (name)
 {
   return __libc_enable_secure ? NULL : getenv (name);
 }
+libc_hidden_def (__secure_getenv)