diff options
author | vincentdarley <vincentdarley> | 2002-05-02 20:15:19 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2002-05-02 20:15:19 (GMT) |
commit | 7c91f1013324e9413b31489bacb0006f0ec0f997 (patch) | |
tree | defc9cdccd62f7994fe3226776f5ea01c9a04065 /unix/tclUnixFile.c | |
parent | 35438a5685d2efcfe4ea877ab475aa116222817e (diff) | |
download | tcl-7c91f1013324e9413b31489bacb0006f0ec0f997.zip tcl-7c91f1013324e9413b31489bacb0006f0ec0f997.tar.gz tcl-7c91f1013324e9413b31489bacb0006f0ec0f997.tar.bz2 |
fix to 551306
Diffstat (limited to 'unix/tclUnixFile.c')
-rw-r--r-- | unix/tclUnixFile.c | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/unix/tclUnixFile.c b/unix/tclUnixFile.c index 3e2c7c8..5eca8e7 100644 --- a/unix/tclUnixFile.c +++ b/unix/tclUnixFile.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixFile.c,v 1.19 2002/03/24 11:41:51 vincentdarley Exp $ + * RCS: @(#) $Id: tclUnixFile.c,v 1.20 2002/05/02 20:15:20 vincentdarley Exp $ */ #include "tclInt.h" @@ -760,3 +760,30 @@ TclpObjLink(pathPtr, toPtr) } #endif + + +/* + *--------------------------------------------------------------------------- + * + * TclpFilesystemPathType -- + * + * This function is part of the native filesystem support, and + * returns the path type of the given path. Right now it simply + * returns NULL. In the future it could return specific path + * types, like 'nfs', 'samba', 'FAT32', etc. + * + * Results: + * NULL at present. + * + * Side effects: + * None. + * + *--------------------------------------------------------------------------- + */ +Tcl_Obj* +TclpFilesystemPathType(pathObjPtr) + Tcl_Obj* pathObjPtr; +{ + /* All native paths are of the same type */ + return NULL; +} |