X-Git-Url: https://jasonwoof.com/gitweb/?p=st.git;a=blobdiff_plain;f=st.c;h=f8d2257a270e09aac49c45083e08ef62cd06c26d;hp=deddb0d2c2e76faa9c4538a1f98b941fa0b1dd3d;hb=ce3f4fc647be3ab28f934db9365445a56ebd85bf;hpb=d2f157c7418e2762316e5471f819ec1e5c49e93c diff --git a/st.c b/st.c index deddb0d..f8d2257 100644 --- a/st.c +++ b/st.c @@ -20,8 +20,6 @@ #include #include -#define TNAME "st-256color" - /* Arbitrary sizes */ #define ESC_TITLE_SIZ 256 #define ESC_BUF_SIZ 256 @@ -107,8 +105,6 @@ typedef struct { char s[ESC_BUF_SIZ]; } Key; -#include "config.h" - /* Drawing Context */ typedef struct { unsigned long col[256]; @@ -117,6 +113,8 @@ typedef struct { GC gc; } DC; +#include "config.h" + static void die(const char *errstr, ...); static void draw(int); static void execsh(void);