mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-04 09:14:21 +03:00
72bb80a9ae
I'm just gonna commit them without too much thinking and then take it from there.
17 lines
268 B
C++
17 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();
|
|
|
|
}
|