aboutsummaryrefslogtreecommitdiffstats
path: root/src/posix-util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/posix-util.c')
-rw-r--r--src/posix-util.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/posix-util.c b/src/posix-util.c
index 881856ca..cddb31f4 100644
--- a/src/posix-util.c
+++ b/src/posix-util.c
@@ -157,3 +157,10 @@ _gpgme_allow_set_foreground_window (pid_t pid)
(void)pid;
/* Not needed. */
}
+
+/* See w32-util.c */
+int
+_gpgme_access (const char *path, int mode)
+{
+ return access (path, mode);
+}