1143197Ssobomax/*-
2143197Ssobomax * Copyright (c) 2005 Travis Poppe
3143197Ssobomax * All rights reserved.
4143197Ssobomax *
5143197Ssobomax * Redistribution and use in source and binary forms, with or without
6143197Ssobomax * modification, are permitted provided that the following conditions
7143197Ssobomax * are met:
8143197Ssobomax * 1. Redistributions of source code must retain the above copyright
9143197Ssobomax *    notice, this list of conditions and the following disclaimer
10143197Ssobomax *    in this position and unchanged.
11143197Ssobomax * 2. Redistributions in binary form must reproduce the above copyright
12143197Ssobomax *    notice, this list of conditions and the following disclaimer in the
13143197Ssobomax *    documentation and/or other materials provided with the distribution.
14143197Ssobomax * 3. The name of the author may not be used to endorse or promote products
15143197Ssobomax *    derived from this software without specific prior written permission.
16143197Ssobomax *
17143197Ssobomax * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18143197Ssobomax * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19143197Ssobomax * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20143197Ssobomax * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21143197Ssobomax * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22143197Ssobomax * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23143197Ssobomax * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24143197Ssobomax * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25143197Ssobomax * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26143197Ssobomax * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27143197Ssobomax *
28143197Ssobomax * $FreeBSD$
29143197Ssobomax */
30143197Ssobomax
31143197Ssobomax#ifndef LINUX_SYSPROTO
32143197Ssobomax#define LINUX_SYSPROTO
33143197Ssobomax
34143197Ssobomaxint linux_nosys(struct thread *, struct nosys_args *);
35143197Ssobomax
36143197Ssobomax#endif
37