mirror of
https://github.com/matrix-construct/construct
synced 2024-12-25 23:14:13 +01:00
ircd: Include unistd.h in stdinc stack; remove the syscall() fwddecl.
This commit is contained in:
parent
fe26b5e0c0
commit
9f35483e4e
2 changed files with 1 additions and 3 deletions
|
@ -34,6 +34,7 @@ extern "C"
|
|||
{
|
||||
#include <RB_INC_ASSERT_H
|
||||
#include <RB_INC_STDARG_H
|
||||
#include <RB_INC_UNISTD_H
|
||||
#include <RB_INC_SYS_TIME_H
|
||||
#include <RB_INC_SYS_UTSNAME_H
|
||||
}
|
||||
|
|
|
@ -11,9 +11,6 @@
|
|||
#pragma once
|
||||
#define HAVE_IRCD_UTIL_SYSCALL_H
|
||||
|
||||
// Declaring this here eliminates the need to include <unistd.h> for it
|
||||
extern "C" long syscall(long, ...) noexcept;
|
||||
|
||||
namespace ircd::util
|
||||
{
|
||||
template<class function, class... args> long syscall(function&& f, args&&... a);
|
||||
|
|
Loading…
Reference in a new issue