summaryrefslogtreecommitdiff
path: root/include/my_sys.h
diff options
context:
space:
mode:
authorreggie@mdk10.(none) <>2005-05-20 16:34:59 -0500
committerreggie@mdk10.(none) <>2005-05-20 16:34:59 -0500
commit21133df02ae348a909d3968f0bef846fb71d17f9 (patch)
tree1467155c10e8996d9cce3ec39db813852687c942 /include/my_sys.h
parentabec445934285332db9ab853839004fdebbb63cf (diff)
parent48c584537d3f45263be1fa8bbadab5c14267d3ff (diff)
downloadmariadb-git-21133df02ae348a909d3968f0bef846fb71d17f9.tar.gz
fixed conflicts
Diffstat (limited to 'include/my_sys.h')
-rw-r--r--include/my_sys.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/my_sys.h b/include/my_sys.h
index 473251f26cb..10358470c77 100644
--- a/include/my_sys.h
+++ b/include/my_sys.h
@@ -600,6 +600,11 @@ extern char *_my_strdup_with_length(const byte *from, uint length,
const char *sFile, uint uLine,
myf MyFlag);
+#ifdef __WIN__
+extern int my_access(const char *path, int amode);
+#else
+#define my_access access
+#endif
#ifndef TERMINATE
extern void TERMINATE(FILE *file);