summaryrefslogtreecommitdiff
path: root/emu/NetBSD/os.c
diff options
context:
space:
mode:
Diffstat (limited to 'emu/NetBSD/os.c')
-rw-r--r--emu/NetBSD/os.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/emu/NetBSD/os.c b/emu/NetBSD/os.c
index 8a1d0b88..68bb0a3c 100644
--- a/emu/NetBSD/os.c
+++ b/emu/NetBSD/os.c
@@ -526,3 +526,11 @@ stackalloc(Proc *p, void **tos)
*(Proc **)rv = p;
return rv;
}
+
+int
+segflush(void *a, ulong n)
+{
+ USED(a);
+ USED(n);
+ return 0;
+}