From f7b0d77a03a2b39b96d05e91928df0ad8df0f49f Mon Sep 17 00:00:00 2001 From: bakkeby Date: Fri, 10 Apr 2020 13:57:14 +0200 Subject: [PATCH] make argv0 not static, fixes a warning with tcc (fcd339) --- x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x.c b/x.c index 12ad9b8..fbd902e 100644 --- a/x.c +++ b/x.c @@ -15,7 +15,7 @@ #include #include -static char *argv0; +char *argv0; #include "arg.h" #include "st.h" #include "win.h"