13 lines
256 B
C
13 lines
256 B
C
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <syscall.h>
|
|
#include <syscall_nums.h>
|
|
|
|
DEFN_SYSCALL2(getcwd, SYS_GETCWD, char *, size_t);
|
|
|
|
char *getcwd(char *buf, size_t size) {
|
|
if (!buf) buf = malloc(size);
|
|
return (char *)syscall_getcwd(buf, size);
|
|
}
|
|
|