Files
2020-02-07 12:17:44 +02:00

15 lines
485 B
C

#pragma once
struct utsname;
struct timespec;
struct timeval;
struct timezone;
int sys_sync(void);
int sys_mount(const char *dev_name, const char *dir_name, const char *type, unsigned long flags, void *data);
int sys_umount(const char *target);
int sys_uname(struct utsname *name);
int sys_nanosleep(const struct timespec *req, struct timespec *rem);
int sys_gettimeofday(struct timeval *tv, struct timezone *tz);
int sys_reboot(int magic1, int magic2, unsigned int cmd, void *arg);