>From cf9c5bfc3bfd32d663fb83b49ed3258f42f80ab7 Mon Sep 17 00:00:00 2001 From: Rodolfo García Peñas (kix) <[email protected]> Date: Wed, 25 Jan 2012 06:26:55 +0100 Subject: [PATCH 11/24] WindowMaker: externs in superfluous are not needed
The functions in superfluous.h are declared as externs, but they don't need the extern. --- src/superfluous.h | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/superfluous.h b/src/superfluous.h index 8811843..d6987ac 100644 --- a/src/superfluous.h +++ b/src/superfluous.h @@ -23,7 +23,7 @@ #define PIECES ((64/ICON_KABOOM_PIECE_SIZE)*(64/ICON_KABOOM_PIECE_SIZE)) -extern void DoKaboom(WScreen *scr, Window win, int x, int y); -extern Pixmap MakeGhostDock(WDock *dock, int sx, int dx, int y); -extern Pixmap MakeGhostIcon(WScreen *scr, Drawable drawable); +void DoKaboom(WScreen *scr, Window win, int x, int y); +Pixmap MakeGhostDock(WDock *dock, int sx, int dx, int y); +Pixmap MakeGhostIcon(WScreen *scr, Drawable drawable); #endif /* WMSUPERFLUOUS_H */ -- 1.7.2.3 -- ||// //\\// Rodolfo "kix" Garcia ||\\// //\\ http://www.kix.es/
>From cf9c5bfc3bfd32d663fb83b49ed3258f42f80ab7 Mon Sep 17 00:00:00 2001 From: Rodolfo GarcÃa Peñas (kix) <[email protected]> Date: Wed, 25 Jan 2012 06:26:55 +0100 Subject: [PATCH 11/24] WindowMaker: externs in superfluous are not needed The functions in superfluous.h are declared as externs, but they don't need the extern. --- src/superfluous.h | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/superfluous.h b/src/superfluous.h index 8811843..d6987ac 100644 --- a/src/superfluous.h +++ b/src/superfluous.h @@ -23,7 +23,7 @@ #define PIECES ((64/ICON_KABOOM_PIECE_SIZE)*(64/ICON_KABOOM_PIECE_SIZE)) -extern void DoKaboom(WScreen *scr, Window win, int x, int y); -extern Pixmap MakeGhostDock(WDock *dock, int sx, int dx, int y); -extern Pixmap MakeGhostIcon(WScreen *scr, Drawable drawable); +void DoKaboom(WScreen *scr, Window win, int x, int y); +Pixmap MakeGhostDock(WDock *dock, int sx, int dx, int y); +Pixmap MakeGhostIcon(WScreen *scr, Drawable drawable); #endif /* WMSUPERFLUOUS_H */ -- 1.7.2.3
