summaryrefslogtreecommitdiffstats
path: root/unix/tclLoadOSF.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-11-06 14:58:51 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-11-06 14:58:51 (GMT)
commit8f3dc754512aa5d562d9669f5a533fd330091692 (patch)
tree887996f04bf97175f9e4432d0501b2622e7278f5 /unix/tclLoadOSF.c
parent019e49cb721639318c71429003fa55ac2fbfa78d (diff)
parent89e3b6811bfe4023587eeb490ddbe14d1c201ffe (diff)
downloadtcl-8f3dc754512aa5d562d9669f5a533fd330091692.zip
tcl-8f3dc754512aa5d562d9669f5a533fd330091692.tar.gz
tcl-8f3dc754512aa5d562d9669f5a533fd330091692.tar.bz2
Merge 8.7
Diffstat (limited to 'unix/tclLoadOSF.c')
-rw-r--r--unix/tclLoadOSF.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/unix/tclLoadOSF.c b/unix/tclLoadOSF.c
index a69a0be..6940f18 100644
--- a/unix/tclLoadOSF.c
+++ b/unix/tclLoadOSF.c
@@ -197,36 +197,6 @@ UnloadFile(
}
/*
- *----------------------------------------------------------------------
- *
- * TclGuessPackageName --
- *
- * If the "load" command is invoked without providing a package name,
- * this function is invoked to try to figure it out.
- *
- * Results:
- * Always returns 0 to indicate that we couldn't figure out a package
- * name; generic code will then try to guess the package from the file
- * name. A return value of 1 would have meant that we figured out the
- * package name and put it in bufPtr.
- *
- * Side effects:
- * None.
- *
- *----------------------------------------------------------------------
- */
-
-int
-TclGuessPackageName(
- const char *fileName, /* Name of file containing package (already
- * translated to local form if needed). */
- Tcl_DString *bufPtr) /* Initialized empty dstring. Append package
- * name to this if possible. */
-{
- return 0;
-}
-
-/*
* Local Variables:
* mode: c
* c-basic-offset: 4