Files
Custom-Operating-System/libs/libc/include/fcntl.h

15 lines
258 B
C
Raw Normal View History

2025-02-12 09:54:05 -05:00
#ifndef _LIBC_FCNTL_H
#define _LIBC_FCNTL_H
#include <bits/fcntl.h>
#include <sys/cdefs.h>
#include <sys/types.h>
__BEGIN_DECLS
int open(const char* pathname, int flags, ...);
int creat(const char* path, mode_t mode);
__END_DECLS
#endif // _LIBC_FCNTL_H