diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-07-02 11:53:38 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-07-02 11:53:38 (GMT) |
commit | 00702159337bc65945b09c3a6e334dc011841c52 (patch) | |
tree | 2a93098189ab40f40238a4c14f1a036a1c99615d | |
parent | bf2b5846b067e6cf722c9c2a85de1868d44059b8 (diff) | |
download | tcl-00702159337bc65945b09c3a6e334dc011841c52.zip tcl-00702159337bc65945b09c3a6e334dc011841c52.tar.gz tcl-00702159337bc65945b09c3a6e334dc011841c52.tar.bz2 |
No need for function prototypes in unix/dltest/*.c
-rw-r--r-- | unix/dltest/pkga.c | 9 | ||||
-rw-r--r-- | unix/dltest/pkgb.c | 15 | ||||
-rw-r--r-- | unix/dltest/pkgc.c | 9 | ||||
-rw-r--r-- | unix/dltest/pkgd.c | 9 | ||||
-rw-r--r-- | unix/dltest/pkgua.c | 10 |
5 files changed, 2 insertions, 50 deletions
diff --git a/unix/dltest/pkga.c b/unix/dltest/pkga.c index 45197e3..c5292ee 100644 --- a/unix/dltest/pkga.c +++ b/unix/dltest/pkga.c @@ -14,15 +14,6 @@ #include "tcl.h" /* - * Prototypes for procedures defined later in this file: - */ - -static int Pkga_EqObjCmd(ClientData clientData, - Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]); -static int Pkga_QuoteObjCmd(ClientData clientData, - Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]); - -/* *---------------------------------------------------------------------- * * Pkga_EqObjCmd -- diff --git a/unix/dltest/pkgb.c b/unix/dltest/pkgb.c index e66c9ec..b221518 100644 --- a/unix/dltest/pkgb.c +++ b/unix/dltest/pkgb.c @@ -18,17 +18,6 @@ #endif /* - * Prototypes for procedures defined later in this file: - */ - -static int Pkgb_SubObjCmd(ClientData clientData, - Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]); -static int Pkgb_UnsafeObjCmd(ClientData clientData, - Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]); -static int Pkgb_DemoObjCmd(ClientData clientData, - Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]); - -/* *---------------------------------------------------------------------- * * Pkgb_SubObjCmd -- @@ -112,11 +101,11 @@ Pkgb_DemoObjCmd( int objc, /* Number of arguments. */ Tcl_Obj *const objv[]) /* Argument objects. */ { -#if (TCL_MAJOR_VERSION > 8) || (TCL_MINOR_VERSION > 4) - Tcl_Obj *first; (void)dummy; (void)objc; (void)objv; +#if (TCL_MAJOR_VERSION > 8) || (TCL_MINOR_VERSION > 4) + Tcl_Obj *first; if (Tcl_ListObjIndex(NULL, Tcl_GetEncodingSearchPath(), 0, &first) == TCL_OK) { diff --git a/unix/dltest/pkgc.c b/unix/dltest/pkgc.c index 46f6e86..7a52d52 100644 --- a/unix/dltest/pkgc.c +++ b/unix/dltest/pkgc.c @@ -15,15 +15,6 @@ #include "tcl.h" /* - * Prototypes for procedures defined later in this file: - */ - -static int Pkgc_SubObjCmd(ClientData clientData, - Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]); -static int Pkgc_UnsafeObjCmd(ClientData clientData, - Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]); - -/* *---------------------------------------------------------------------- * * Pkgc_SubObjCmd -- diff --git a/unix/dltest/pkgd.c b/unix/dltest/pkgd.c index d64c807..ba15d32 100644 --- a/unix/dltest/pkgd.c +++ b/unix/dltest/pkgd.c @@ -15,15 +15,6 @@ #include "tcl.h" /* - * Prototypes for procedures defined later in this file: - */ - -static int Pkgd_SubObjCmd(ClientData clientData, - Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]); -static int Pkgd_UnsafeObjCmd(ClientData clientData, - Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]); - -/* *---------------------------------------------------------------------- * * Pkgd_SubObjCmd -- diff --git a/unix/dltest/pkgua.c b/unix/dltest/pkgua.c index 44e84d8..03e8aab 100644 --- a/unix/dltest/pkgua.c +++ b/unix/dltest/pkgua.c @@ -15,16 +15,6 @@ #include "tcl.h" /* - * Prototypes for procedures defined later in this file: - */ - -static int PkguaEqObjCmd(ClientData clientData, - Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]); -static int PkguaQuoteObjCmd(ClientData clientData, - Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]); -static void CommandDeleted(ClientData clientData); - -/* * In the following hash table we are going to store a struct that holds all * the command tokens created by Tcl_CreateObjCommand in an interpreter, * indexed by the interpreter. In this way, we can find which command tokens |