summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorunknown <reggie@mdk10.(none)>2005-05-20 16:34:59 -0500
committerunknown <reggie@mdk10.(none)>2005-05-20 16:34:59 -0500
commit606d8a5ab0000ccf1120201db21f92ef69b52a5c (patch)
tree1467155c10e8996d9cce3ec39db813852687c942 /include
parent03e26e50b9829124246ffb6b755e3809c126cb95 (diff)
parentc1ae672adda45a1b8c5637b8f4d6a3f91378ea20 (diff)
downloadmariadb-git-606d8a5ab0000ccf1120201db21f92ef69b52a5c.tar.gz
fixed conflicts
VC++Files/mysys/mysys.dsp: Auto merged include/my_sys.h: Auto merged sql/sql_db.cc: Auto merged
Diffstat (limited to 'include')
-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);