[PATCH RFC] PARAMS elimination: tui/tuiLayout.c
Kevin Buettner
kevinb@cygnus.com
Sat Jun 17 17:31:00 GMT 2000
More PARAMS elimination... Again, I'll wait two days for comments /
objections before committing the changes below.
* tuiLayout.c: Eliminate use of PARAMS from this file.
Index: tui/tuiLayout.c
===================================================================
RCS file: /cvs/src/src/gdb/tui/tuiLayout.c,v
retrieving revision 1.2
diff -u -r1.2 tuiLayout.c
--- tuiLayout.c 2000/05/28 01:12:42 1.2
+++ tuiLayout.c 2000/06/18 00:27:49
@@ -20,18 +20,13 @@
** Static Local Decls
********************************/
-static void _initGenWinInfo PARAMS
- ((TuiGenWinInfoPtr, TuiWinType, int, int, int, int));
-static void _initAndMakeWin PARAMS
- ((Opaque *, TuiWinType, int, int, int, int, int));
-static void _showSourceOrDisassemAndCommand PARAMS
- ((TuiLayoutType));
-static void _makeSourceOrDisassemWindow PARAMS
- ((TuiWinInfoPtr *, TuiWinType, int, int));
+static void _initGenWinInfo (TuiGenWinInfoPtr, TuiWinType, int, int, int, int);
+static void _initAndMakeWin (Opaque *, TuiWinType, int, int, int, int, int);
+static void _showSourceOrDisassemAndCommand (TuiLayoutType);
+static void _makeSourceOrDisassemWindow (TuiWinInfoPtr *, TuiWinType, int, int);
static void _makeCommandWindow (TuiWinInfoPtr *, int, int);
static void _makeSourceWindow (TuiWinInfoPtr *, int, int);
-static void _makeDisassemWindow PARAMS
- ((TuiWinInfoPtr *, int, int));
+static void _makeDisassemWindow (TuiWinInfoPtr *, int, int);
static void _makeDataWindow (TuiWinInfoPtr *, int, int);
static void _showSourceCommand (void);
static void _showDisassemCommand (void);
More information about the Gdb-patches
mailing list