diff options
author | noname <noname@inventati.org> | 2015-04-08 23:16:57 +0000 |
---|---|---|
committer | Roberto E. Vargas Caballero <k0ga@shike2.com> | 2015-04-10 23:28:16 +0200 |
commit | 9305f3c184a0179e37802e752c3d1dc830ae893c (patch) | |
tree | f1e9605950e30c1790b417245d3686748654cb5e /st.c | |
parent | 5bb90125c80a9409745bd7551aaae478dda3f890 (diff) | |
download | st-9305f3c184a0179e37802e752c3d1dc830ae893c.tar.gz st-9305f3c184a0179e37802e752c3d1dc830ae893c.tar.bz2 |
Remove variable names from function declarations.
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -359,7 +359,7 @@ static void csidump(void); static void csihandle(void); static void csiparse(void); static void csireset(void); -static int eschandle(uchar ascii); +static int eschandle(uchar); static void strdump(void); static void strhandle(void); static void strparse(void); @@ -406,7 +406,7 @@ static void ttyread(void); static void ttyresize(void); static void ttysend(char *, size_t); static void ttywrite(const char *, size_t); -static void tstrsequence(uchar c); +static void tstrsequence(uchar); static void xdraws(char *, Glyph, int, int, int, int); static void xhints(void); |