mirror of
https://github.com/RGBCube/serenity
synced 2025-05-19 22:25:07 +00:00
18 lines
281 B
C
18 lines
281 B
C
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <sys/cdefs.h>
|
|
#include <sys/ioctl_numbers.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
#define FIONREAD 0x541B
|
|
|
|
int ioctl(int fd, unsigned request, ...);
|
|
|
|
__END_DECLS
|