mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
72bb80a9ae
I'm just gonna commit them without too much thinking and then take it from there.
16 lines
268 B
C++
16 lines
268 B
C++
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
namespace Userspace {
|
|
|
|
int open(const char* path);
|
|
int close(int fd);
|
|
int read(int fd, void* outbuf, size_t nread);
|
|
int seek(int fd, int offset);
|
|
int kill(pid_t pid, int sig);
|
|
uid_t getuid();
|
|
void sleep(DWORD ticks);
|
|
void yield();
|
|
|
|
}
|