summaryrefslogtreecommitdiffstats
path: root/osdep-darwin.c
diff options
context:
space:
mode:
Diffstat (limited to 'osdep-darwin.c')
-rw-r--r--osdep-darwin.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/osdep-darwin.c b/osdep-darwin.c
index 229a4931..c5820df6 100644
--- a/osdep-darwin.c
+++ b/osdep-darwin.c
@@ -25,6 +25,7 @@
#include <unistd.h>
char *osdep_get_name(int, char *);
+char *osdep_get_cwd(pid_t);
struct event_base *osdep_event_init(void);
#define unused __attribute__ ((unused))
@@ -48,6 +49,12 @@ osdep_get_name(int fd, unused char *tty)
return (strdup(kp.kp_proc.p_comm));
}
+char *
+osdep_get_cwd(pid_t pid)
+{
+ return (NULL);
+}
+
struct event_base *
osdep_event_init(void)
{