mirror of git://git.musl-libc.org/musl
15 lines
170 B
C
15 lines
170 B
C
|
#ifndef _SYS_IOCTL_H
|
||
|
#define _SYS_IOCTL_H
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include <bits/ioctl.h>
|
||
|
|
||
|
int ioctl (int, int, ...);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
#endif
|