From 2952c20b779fc6c797e2ab33ba3bda19cbb7a00d Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 12 Mar 2007 10:12:27 +0000 Subject: [PATCH] r21795: fix the prototype of unsetenv()... metze --- source/lib/replace/replace.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib/replace/replace.h b/source/lib/replace/replace.h index cae9d801789..b36a3503356 100644 --- a/source/lib/replace/replace.h +++ b/source/lib/replace/replace.h @@ -142,7 +142,7 @@ int rep_setenv(const char *name, const char *value, int overwrite); #ifndef HAVE_UNSETENV #define unsetenv rep_unsetenv -int rep_unsetenv(const char *name, const char *value, int overwrite); +int rep_unsetenv(const char *name); #endif #ifndef HAVE_SETEUID