1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 07:38:10 +00:00
serenity/LibC/fcntl.h

15 lines
190 B
C

#pragma once
#include <sys/cdefs.h>
__BEGIN_DECLS
#define F_DUPFD 0
#define F_GETFD 1
#define F_SETFD 2
#define F_GETFL 3
#define F_SETFL 4
int fcntl(int fd, int cmd, ...);
__END_DECLS