mirror of
https://github.com/JannisHeydemann/BoredOS.git
synced 2026-05-30 02:16:58 +00:00
refactor(libc): move Lua an DOOM stubs into shared libc modules
This commit is contained in:
13
src/userland/libc/sys/stat.h
Normal file
13
src/userland/libc/sys/stat.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#ifndef BOREDOS_LIBC_SYS_STAT_H
|
||||
#define BOREDOS_LIBC_SYS_STAT_H
|
||||
|
||||
struct stat {
|
||||
int st_size;
|
||||
int st_mode;
|
||||
};
|
||||
|
||||
int stat(const char *pathname, struct stat *statbuf);
|
||||
int fstat(int fd, struct stat *statbuf);
|
||||
int mkdir(const char *pathname, int mode);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user