From 386d69533095a6f36d5c3a98f2cd8de20a0132d4 Mon Sep 17 00:00:00 2001 From: kwolekr Date: Sat, 18 Apr 2015 20:12:14 -0400 Subject: Porting: Refactor initalizePaths() Add support for Solaris and HP-UX Search additional potential procfs locations for current executable --- src/filesys.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/filesys.h') diff --git a/src/filesys.h b/src/filesys.h index c22e89b3e..bfb340d85 100644 --- a/src/filesys.h +++ b/src/filesys.h @@ -26,9 +26,11 @@ with this program; if not, write to the Free Software Foundation, Inc., #ifdef _WIN32 // WINDOWS #define DIR_DELIM "\\" +#define DIR_DELIM_CHAR '\\' #define FILESYS_CASE_INSENSITIVE 1 #else // POSIX #define DIR_DELIM "/" +#define DIR_DELIM_CHAR '/' #define FILESYS_CASE_INSENSITIVE 0 #endif -- cgit v1.2.3