From 9f35483e4e973efa67a48e87d9c3e6a35b71ea91 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Sat, 15 Sep 2018 00:14:22 -0700 Subject: [PATCH] ircd: Include unistd.h in stdinc stack; remove the syscall() fwddecl. --- include/ircd/stdinc.h | 1 + include/ircd/util/syscall.h | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/include/ircd/stdinc.h b/include/ircd/stdinc.h index 22e05d9ed..dff485d0d 100644 --- a/include/ircd/stdinc.h +++ b/include/ircd/stdinc.h @@ -34,6 +34,7 @@ extern "C" { #include for it -extern "C" long syscall(long, ...) noexcept; - namespace ircd::util { template long syscall(function&& f, args&&... a);