dtdocbook: Change to ANSI function definitions

This commit is contained in:
Peter Howkins
2018-06-28 04:12:10 +01:00
parent 3baf0744f2
commit 948baafd17
51 changed files with 2295 additions and 1978 deletions

View File

@@ -106,8 +106,9 @@ init";
*/
void
TclPlatformInit(interp)
Tcl_Interp *interp;
TclPlatformInit(
Tcl_Interp *interp
)
{
#ifndef NO_UNAME
struct utsname name;
@@ -179,8 +180,9 @@ TclPlatformInit(interp)
*/
int
Tcl_Init(interp)
Tcl_Interp *interp; /* Interpreter to initialize. */
Tcl_Init(
Tcl_Interp *interp /* Interpreter to initialize. */
)
{
return Tcl_Eval(interp, initScript);
}