diff options
author | arg@mmvi | 2006-09-25 08:29:20 +0200 |
---|---|---|
committer | arg@mmvi | 2006-09-25 08:29:20 +0200 |
commit | 1716159e05e712962c3a4c60091f6cd6b573461f (patch) | |
tree | bd11f54ccf6b0dd5615fe96a8bc5bbc8cab99311 /main.c | |
parent | 11b64016687f01e6498b7d1433ae334adf473804 (diff) |
applied something similiar to Jukkas patch
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -42,7 +42,7 @@ static Window root; static Window win; static void -calcoffsets() { +calcoffsets(void) { unsigned int tw, w; if(!curr) @@ -70,7 +70,7 @@ calcoffsets() { } static void -drawmenu() { +drawmenu(void) { Item *i; dc.x = 0; @@ -247,7 +247,7 @@ kpress(XKeyEvent * e) { } static char * -readstdin() { +readstdin(void) { static char *maxname = NULL; char *p, buf[1024]; unsigned int len = 0, max = 0; |