mirror of
https://github.com/mirror/make.git
synced 2025-01-07 19:00:09 +08:00
c622dd9bdf
* w32/include/pathstuff.h: Added prototype for the new function convert_vpath_to_win32. Deleted macro for same.
10 lines
272 B
C
10 lines
272 B
C
#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
|