ports/misc/deco/patches/patch-env_h

12 lines
227 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
Fix -fno-common build failure.
Index: env.h
--- env.h.orig
+++ env.h
@@ -1,4 +1,4 @@
-char **EnvVector;
+static char **EnvVector;
void EnvInit (char **env);
char *EnvGet (char *name);
void EnvPut (char *name, char *value);