mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
16 lines
216 B
C
16 lines
216 B
C
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
extern "C" {
|
|
|
|
uid_t getuid();
|
|
gid_t getgid();
|
|
pid_t getpid();
|
|
int open(const char* path);
|
|
ssize_t read(int fd, void* buf, size_t count);
|
|
int close(int fd);
|
|
pid_t waitpid(pid_t);
|
|
|
|
}
|
|
|