1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 22:25:07 +00:00
serenity/Userland/Libraries/LibC/sys/ioctl.h
2021-08-14 22:32:00 +01:00

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