summaryrefslogtreecommitdiff
path: root/zap/include/zap/sys.hh
blob: 9b210e6c30f709c4543c423e7158a42d278be228 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
	Copyright 2022-2023 Gabriel Jensen.
	This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
	If a copy of the MPL was not distributed with this file, You can obtain one at <https://mozilla.org/MPL/2.0>.
*/

#ifndef zap_priv_cxxhdr_sys
#define zap_priv_cxxhdr_sys

// C++11: parameter pack

#include <zap/sys.h>

namespace zap {
	template<typename... typs> zap_attr_iln inline unsigned long syscall(unsigned long const id,typs... args) noexcept {return ::zap_syscall(id,args...);}
}

#endif