ports/misc/deco/files/patch-env.h
Alexey Dokuchaev 989dca8687 Fix regression introduced in r545519 which resulted in the environment
become empty in the internal shell and thus confusing many programs.
2021-01-28 03:05:34 +00:00

8 lines
206 B
C

--- env.h.orig 1997-07-12 16:29:23 UTC
+++ env.h
@@ -1,4 +1,4 @@
-char **EnvVector;
+extern char **EnvVector;
void EnvInit (char **env);
char *EnvGet (char *name);
void EnvPut (char *name, char *value);