git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
chore: fix almost *ALL* warnings.
[lunaix-os.git]
/
lunaix-os
/
usr
/
includes
/
sys
/
lunaix.h
1
#ifndef __LUNAIX_SYS_LUNAIX_H
2
#define __LUNAIX_SYS_LUNAIX_H
3
4
#include <sys/types.h>
5
6
void
7
yield();
8
9
pid_t
10
wait(int* status);
11
12
pid_t
13
waitpid(pid_t pid, int* status, int flags);
14
15
void
16
syslog(int level, const char* fmt, ...);
17
18
int
19
realpathat(int fd, char* buf, size_t size);
20
21
#endif /* __LUNAIX_LUNAIX_H */