KallistiOS git master
Independent SDK for the Sega Dreamcast
Loading...
Searching...
No Matches
ioctl.h
Go to the documentation of this file.
1/* KallistiOS ##version##
2
3 sys/ioctl.h
4 Copyright (C) 2024 Andress Barajas
5
6*/
7
8/** \file sys/ioctl.h
9 \brief Header for terminal control operations.
10 \ingroup vfs_posix
11
12 This file contains definitions for terminal control operations, as specified by
13 the POSIX standard. It includes necessary constants and macros for performing
14 various control operations on terminals using the ioctl system call.
15
16 \author Andress Barajas
17*/
18
19#ifndef __SYS_IOCTL_H
20#define __SYS_IOCTL_H
21
22#include <sys/cdefs.h>
23
24__BEGIN_DECLS
25
26#include <kos/fs.h>
27
28/* Define ioctl as an alias for fs_ioctl */
29#define ioctl fs_ioctl
30
31__END_DECLS
32
33#endif /* __SYS_IOCTL_H */
Virtual filesystem support.