- Added a setenv replacement for systems which lack it
diff --git a/helper.h b/helper.h
index 0e53fac..68e0a85 100644
--- a/helper.h
+++ b/helper.h
@@ -47,4 +47,8 @@
 void setproctitle(const char *fmt, ...);
 #endif /* !HAVE_SETPROCTITLE */
 
+#ifndef HAVE_SETENV
+int setenv(const char *name, const char *value, int overwrite);
+#endif /* !HAVE_SETENV */
+
 #endif /* _HELPER_H */