blob: 4910f42c2a5c3e0eae3ff6b0685ecb14e72d7e24 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#include <unistd.h>
#include <errno.h>
#include "syscall.h"
char *getcwd(char *buf, size_t size)
{
return syscall2(__NR_getcwd, (long)buf, size) < 0 ? NULL : buf;
}
|