summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/iopl.c
blob: 4f21b55f57572d290c16d7d9df0346f911f25bd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* vi: set sw=4 ts=4: */
/*
 * iopl() for uClibc
 *
 * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
 *
 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
 */

#include "syscalls.h"
/* Tuns out the m68k unistd.h kernel header is broken */
#if defined __ARCH_HAS_MMU__ && defined __NR_iopl && ( !defined(__mc68000__))
#include <sys/perm.h>
_syscall1(int, iopl, int, level);
#endif