summaryrefslogtreecommitdiff
path: root/api/posix/fcntl.h
blob: 8a6ee7ab73ab3b87f4540a291513322320764d43 (plain)
1
2
3
4
5
6
7
8
#pragma once

#include "sys/types.h"

#define O_RDONLY 0

int open(const char *path, int flags, mode_t mode);