Files
rosetta/lib/libc/include/unistd.h
Max Wash 68714fa0e5 lib: c: combine libc and ulibc
libc is now made up of several independent components, each of which is individually compiled into a static library.
they are then all combined into a single shared library.
2026-03-06 20:12:58 +00:00

10 lines
138 B
C

#ifndef UNISTD_H_
#define UNISTD_H_
#include <stdint.h>
extern int open(const char *path, int flags);
extern int close(int fd);
#endif