From: Hiltjo Posthuma Date: Fri, 10 Apr 2020 10:12:43 +0000 (+0200) Subject: make argv0 not static, fixes a warning with tcc X-Git-Url: https://git.danieliu.xyz/?p=st.git;a=commitdiff_plain;h=5703aa0390484dd7da4bd9c388c85708d8fcd339 make argv0 not static, fixes a warning with tcc Reported by Aajonus, thanks! --- diff --git a/x.c b/x.c index 4cf6b21..e5f1737 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"