diff options
Diffstat (limited to 'src/unistd/fchdir.c')
| -rw-r--r-- | src/unistd/fchdir.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/unistd/fchdir.c b/src/unistd/fchdir.c new file mode 100644 index 00000000..433b9a7c --- /dev/null +++ b/src/unistd/fchdir.c @@ -0,0 +1,11 @@ +#include <unistd.h> + +int fchdir(int fildes) +{ + return fildes; +} + +/* +XOPEN(400) +POSIX(200809) +*/ |
