summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorWarner Losh <imp@bsdimp.com>2022-01-29 19:39:37 -0700
committerWarner Losh <imp@bsdimp.com>2022-02-26 10:01:38 -0700
commita1ea19481fb2d4db5fcf9b2362a4826efb65b328 (patch)
treea7d84b488a89b3cb8f4412d7ca0be91f6909198c
parent66eed099f46f4c8749e0a509197a18c0d064b761 (diff)
downloadfocaccia-qemu-a1ea19481fb2d4db5fcf9b2362a4826efb65b328.tar.gz
focaccia-qemu-a1ea19481fb2d4db5fcf9b2362a4826efb65b328.zip
bsd-user: Move system call building to os-syscall.c
Signed-off-by: Warner Losh <imp@bsdimp.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r--bsd-user/freebsd/meson.build1
-rw-r--r--bsd-user/meson.build1
2 files changed, 1 insertions, 1 deletions
diff --git a/bsd-user/freebsd/meson.build b/bsd-user/freebsd/meson.build
index 4b69cca7b9..f87c788e84 100644
--- a/bsd-user/freebsd/meson.build
+++ b/bsd-user/freebsd/meson.build
@@ -1,3 +1,4 @@
 bsd_user_ss.add(files(
   'os-sys.c',
+  'os-syscall.c',
 ))
diff --git a/bsd-user/meson.build b/bsd-user/meson.build
index 8380fa44c2..5243122fc5 100644
--- a/bsd-user/meson.build
+++ b/bsd-user/meson.build
@@ -13,7 +13,6 @@ bsd_user_ss.add(files(
   'mmap.c',
   'signal.c',
   'strace.c',
-  'syscall.c',
   'uaccess.c',
 ))