Skip to content

Commit f93f780

Browse files
author
Bryan Henderson
committed
-Werror fixes from D'Arcy.
1 parent 46c4e6f commit f93f780

File tree

2 files changed

+7
-23
lines changed

2 files changed

+7
-23
lines changed

src/bin/pgtclsh/pgtclAppInit.c

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,7 @@
1111
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
1212
*/
1313

14-
#ifndef lint
15-
static char sccsid[] = "@(#) tclAppInit.c 1.11 94/12/17 16:14:03";
16-
#endif /* not lint */
17-
18-
#include "tcl.h"
14+
#include <tcl.h>
1915

2016
#include <libpgtcl.h>
2117

@@ -47,9 +43,7 @@ int *tclDummyMathPtr = (int *) matherr;
4743
*/
4844

4945
int
50-
main(argc, argv)
51-
int argc; /* Number of command-line arguments. */
52-
char **argv; /* Values of command-line arguments. */
46+
main(int argc, char **argv)
5347
{
5448
Tcl_Main(argc, argv, Tcl_AppInit);
5549
return 0; /* Needed only to prevent compiler warning. */
@@ -75,8 +69,7 @@ main(argc, argv)
7569
*/
7670

7771
int
78-
Tcl_AppInit(interp)
79-
Tcl_Interp *interp; /* Interpreter for application. */
72+
Tcl_AppInit(Tcl_Interp *interp)
8073
{
8174
if (Tcl_Init(interp) == TCL_ERROR) {
8275
return TCL_ERROR;
@@ -93,7 +86,7 @@ Tcl_AppInit(interp)
9386
* where "Mod" is the name of the module.
9487
*/
9588

96-
if (Pg_Init(interp) == TCL_ERROR) {
89+
if (Pgtcl_Init(interp) == TCL_ERROR) {
9790
return TCL_ERROR;
9891
}
9992

src/bin/pgtclsh/pgtkAppInit.c

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@
1111
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
1212
*/
1313

14-
#ifndef lint
15-
static char sccsid[] = "@(#) tkAppInit.c 1.12 94/12/17 16:30:56";
16-
#endif /* not lint */
17-
1814
#include "tk.h"
1915
#include "libpgtcl.h"
2016

@@ -46,9 +42,7 @@ int *tclDummyMathPtr = (int *) matherr;
4642
*/
4743

4844
int
49-
main(argc, argv)
50-
int argc; /* Number of command-line arguments. */
51-
char **argv; /* Values of command-line arguments. */
45+
main(int argc, char **argv)
5246
{
5347
Tk_Main(argc, argv, Tcl_AppInit);
5448
return 0; /* Needed only to prevent compiler warning. */
@@ -74,11 +68,8 @@ main(argc, argv)
7468
*/
7569

7670
int
77-
Tcl_AppInit(interp)
78-
Tcl_Interp *interp; /* Interpreter for application. */
71+
Tcl_AppInit(Tcl_Interp *interp)
7972
{
80-
Tk_Window main;
81-
8273
if (Tcl_Init(interp) == TCL_ERROR) {
8374
return TCL_ERROR;
8475
}
@@ -97,7 +88,7 @@ Tcl_AppInit(interp)
9788
* where "Mod" is the name of the module.
9889
*/
9990

100-
if (Pg_Init(interp) == TCL_ERROR) {
91+
if (Pgtcl_Init(interp) == TCL_ERROR) {
10192
return TCL_ERROR;
10293
}
10394
/*

0 commit comments

Comments
 (0)