diff options
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; +} | 
