From: Paul Eggert <eggert@cs.ucla.edu>
Date: Fri, 8 Feb 2013 05:58:09 +0000 (-0800)
Subject: secure_getenv: fix include typo
X-Git-Tag: v0.1~209
X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=a0f402b76e57d57abd1961f20683a25d46179297;p=gnulib.git

secure_getenv: fix include typo

* lib/secure_getenv.c: Include config.h.  Somehow I forgot!
---

diff --git a/ChangeLog b/ChangeLog
index 4dc8f2c5b3..5439c05cbd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2013-02-07  Paul Eggert  <eggert@cs.ucla.edu>
 
+	secure_getenv: fix include typo
+	* lib/secure_getenv.c: Include config.h.  Somehow I forgot!
+
 	secure_getenv: port better to FreeBSD and Solaris
 	* lib/secure_getenv.c [!HAVE___SECURE_GETENV]:
 	Include unistd.h if HAVE_ISSETUGID, otherwise define a dummy issetugid.
diff --git a/lib/secure_getenv.c b/lib/secure_getenv.c
index 28595228f5..1fb61bb029 100644
--- a/lib/secure_getenv.c
+++ b/lib/secure_getenv.c
@@ -15,6 +15,8 @@
    You should have received a copy of the GNU Lesser General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
+#include <config.h>
+
 #include <stdlib.h>
 
 #if !HAVE___SECURE_GETENV