From 857268b32c8efb99f1f40fab3534850f3871f007 Mon Sep 17 00:00:00 2001 From: Bimba Shrestha Date: Fri, 25 Oct 2019 15:15:28 -0700 Subject: [PATCH] Gating named pipe support in hedaer file --- programs/util.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/programs/util.h b/programs/util.h index 3b15d9471..e79834693 100644 --- a/programs/util.h +++ b/programs/util.h @@ -135,7 +135,10 @@ U32 UTIL_isDirectory(const char* infilename); int UTIL_getFileStat(const char* infilename, stat_t* statbuf); int UTIL_isSameFile(const char* file1, const char* file2); +#ifndef _MSC_VER U32 UTIL_isFIFO(const char* infilename); +#endif + U32 UTIL_isLink(const char* infilename); #define UTIL_FILESIZE_UNKNOWN ((U64)(-1)) U64 UTIL_getFileSize(const char* infilename);