- (bal) Fix mixed up params to memmove() from Jan 5th in setenv.c and
   getcwd.c.
diff --git a/openbsd-compat/setenv.c b/openbsd-compat/setenv.c
index d69f882..ac9670b 100644
--- a/openbsd-compat/setenv.c
+++ b/openbsd-compat/setenv.c
@@ -122,7 +122,7 @@
 			    (cnt + 2)));
 			if (!P)
 				return (-1);
-			memmove(environ, P, cnt * sizeof(char *));
+			memmove(P, environ, cnt * sizeof(char *));
 			environ = P;
 		}
 		environ[cnt + 1] = NULL;