diff options
author | Roland McGrath <roland@redhat.com> | 1996-07-29 05:44:09 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1996-07-29 05:44:09 +0000 |
commit | c622dd9bdff5e11495a2d892c408f39af5c91c9d (patch) | |
tree | 28e51514ffa2443720c18729b36968b56162dc3d | |
parent | 709295136189e03469f8f4a94c4a262b4eda9efd (diff) | |
download | gunmake-c622dd9bdff5e11495a2d892c408f39af5c91c9d.tar.gz |
Sun Jul 28 15:37:09 1996 Rob Tulloh (tulloh@tivoli.com)
* w32/include/pathstuff.h: Added prototype for the new
function convert_vpath_to_win32. Deleted macro for same.
-rw-r--r-- | w32/include/pathstuff.h | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/w32/include/pathstuff.h b/w32/include/pathstuff.h index 63e7fb0..5916961 100644 --- a/w32/include/pathstuff.h +++ b/w32/include/pathstuff.h @@ -1,10 +1,9 @@ -#ifndef _PATHSTUFF_H
-#define _PATHSTUFF_H
-
-extern char * convert_Path_to_win32(char *Path, char to_delim);
-extern char * w32ify(char *file, int resolve);
-extern char * getcwd_fs(char *buf, int len);
-
-#define convert_vpath_to_win32(vpath, delim) convert_Path_to_win32(vpath, delim)
-
-#endif
+#ifndef _PATHSTUFF_H +#define _PATHSTUFF_H + +extern char * convert_Path_to_win32(char *Path, char to_delim); +extern char * convert_vpath_to_win32(char *Path, char to_delim); +extern char * w32ify(char *file, int resolve); +extern char * getcwd_fs(char *buf, int len); + +#endif |