157086Sluigi/*-
257086Sluigi * Copyright (c) 1993 The Regents of the University of California.
357086Sluigi * All rights reserved.
457086Sluigi *
557086Sluigi * Redistribution and use in source and binary forms, with or without
691938Sluigi * modification, are permitted provided that the following conditions
791938Sluigi * are met:
857086Sluigi * 1. Redistributions of source code must retain the above copyright
978543Sluigi *    notice, this list of conditions and the following disclaimer.
1057086Sluigi * 2. Redistributions in binary form must reproduce the above copyright
1171903Sluigi *    notice, this list of conditions and the following disclaimer in the
1257086Sluigi *    documentation and/or other materials provided with the distribution.
1357086Sluigi * 3. Neither the name of the University nor the names of its contributors
1457086Sluigi *    may be used to endorse or promote products derived from this software
1557086Sluigi *    without specific prior written permission.
1657086Sluigi *
1791938Sluigi * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1867175Sjoe * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1971903Sluigi * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2067175Sjoe * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2170314Sjoe * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2267175Sjoe * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2367175Sjoe * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2471903Sluigi * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2571903Sluigi * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2671903Sluigi * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2770314Sjoe * SUCH DAMAGE.
2870314Sjoe *
2971903Sluigi *	from: FreeBSD: src/sys/i386/include/sysarch.h,v 1.14 2000/09/21
3071903Sluigi * $FreeBSD: releng/11.0/sys/arm64/include/sysarch.h 280711 2015-03-26 21:10:42Z andrew $
3170314Sjoe */
3271903Sluigi
3370314Sjoe/*
3491938Sluigi * Architecture specific syscalls (arm64)
3571903Sluigi */
3657086Sluigi#ifndef _MACHINE_SYSARCH_H_
3757086Sluigi#define	_MACHINE_SYSARCH_H_
3871903Sluigi
3967175Sjoe#ifndef _KERNEL
4057086Sluigi
4167175Sjoe__BEGIN_DECLS
4267175Sjoeint	sysarch(int _number, void *_args);
4367175Sjoe__END_DECLS
4491938Sluigi
4557086Sluigi#endif
4667175Sjoe
4767175Sjoe#endif /* !_MACHINE_SYSARCH_H_ */
4857086Sluigi