repo.or.cz
/
coreutils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove suppression-related options.
[coreutils.git]
/
lib
/
fchdir-stub.c
blob
9222362113fc5a09d28a1071369484b041a956e4
1
#include <config.h>
2
#include <sys/types.h>
3
#include <errno.h>
4
5
/* A trivial substitute for `fchdir'.
6
7
DJGPP 2.03 and earlier don't have `fchdir'. */
8
9
int
10
fchdir
(
int
fd
)
11
{
12
errno
=
ENOSYS
;
13
return
-
1
;
14
}