applied something similiar to Jukkas patch

This commit is contained in:
arg@mmvi 2006-09-25 08:29:20 +02:00
parent 11b6401668
commit 1716159e05
1 changed files with 3 additions and 3 deletions

6
main.c
View File

@ -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;