From 41ec130acc8a880b89efe8905d2f4f9e05a04787 Mon Sep 17 00:00:00 2001 From: Johan Danielsson Date: Mon, 8 Mar 1999 10:52:19 +0000 Subject: [PATCH] protos for {un,}setenv git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@5479 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/roken/roken.h.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/roken/roken.h.in b/lib/roken/roken.h.in index 85ba2540b..d93f27ddd 100644 --- a/lib/roken/roken.h.in +++ b/lib/roken/roken.h.in @@ -132,11 +132,11 @@ extern "C" { int putenv(const char *string); #endif -#ifndef HAVE_SETENV +#if !defined(HAVE_SETENV) || defined(NEED_SETENV_PROTO) int setenv(const char *var, const char *val, int rewrite); #endif -#ifndef HAVE_UNSETENV +#if !defined(HAVE_UNSETENV) || defined(NEED_UNSETENV_PROTO) void unsetenv(const char *name); #endif