diff options
| author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-04-04 20:37:08 (GMT) |
|---|---|---|
| committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-04-04 20:37:08 (GMT) |
| commit | 454f7ce78b75ad8674bf45d5edc3cabc0ec9a615 (patch) | |
| tree | f92d5d1da251cd418583634a6ee8e1a1f97de4c5 /generic/tclDecls.h | |
| parent | 084784bdf31a13c816c51a63b3ae0c8bf18914c4 (diff) | |
| parent | cd6ee12fb6fa88c533825df5feec265c3a11f15e (diff) | |
| download | tcl-454f7ce78b75ad8674bf45d5edc3cabc0ec9a615.zip tcl-454f7ce78b75ad8674bf45d5edc3cabc0ec9a615.tar.gz tcl-454f7ce78b75ad8674bf45d5edc3cabc0ec9a615.tar.bz2 | |
some formatting (*.decls)
remove some unused cygwin-related code
some minor gcc warnings
Diffstat (limited to 'generic/tclDecls.h')
| -rw-r--r-- | generic/tclDecls.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclDecls.h b/generic/tclDecls.h index 1f7dfe6..75dbd9a 100644 --- a/generic/tclDecls.h +++ b/generic/tclDecls.h @@ -1802,7 +1802,7 @@ EXTERN int Tcl_LoadFile(Tcl_Interp *interp, Tcl_Obj *pathPtr, const char *const symv[], int flags, void *procPtrs, Tcl_LoadHandle *handlePtr); /* 628 */ -EXTERN void* Tcl_FindSymbol(Tcl_Interp *interp, +EXTERN void * Tcl_FindSymbol(Tcl_Interp *interp, Tcl_LoadHandle handle, const char *symbol); /* 629 */ EXTERN int Tcl_FSUnloadFile(Tcl_Interp *interp, @@ -2470,7 +2470,7 @@ typedef struct TclStubs { int (*tcl_NRExprObj) (Tcl_Interp *interp, Tcl_Obj *objPtr, Tcl_Obj *resultPtr); /* 625 */ int (*tcl_NRSubstObj) (Tcl_Interp *interp, Tcl_Obj *objPtr, int flags); /* 626 */ int (*tcl_LoadFile) (Tcl_Interp *interp, Tcl_Obj *pathPtr, const char *const symv[], int flags, void *procPtrs, Tcl_LoadHandle *handlePtr); /* 627 */ - void* (*tcl_FindSymbol) (Tcl_Interp *interp, Tcl_LoadHandle handle, const char *symbol); /* 628 */ + void * (*tcl_FindSymbol) (Tcl_Interp *interp, Tcl_LoadHandle handle, const char *symbol); /* 628 */ int (*tcl_FSUnloadFile) (Tcl_Interp *interp, Tcl_LoadHandle handlePtr); /* 629 */ } TclStubs; |
