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
*** empty log message ***
[coreutils.git]
/
lib
/
lstat-stub.c
blob
07ad91f9683cef34141de04d4b8a7d8ae29b358f
1
#include <config.h>
2
#include <sys/stat.h>
3
4
/* A trivial substitute for `lstat'.
5
6
DJGPP 2.03 and earlier don't have `lstat' and don't support
7
symlinks. */
8
9
int
10
lstat
(
const char
*
fname
,
struct
stat
*
st_buf
)
11
{
12
return
stat
(
fname
,
st_buf
);
13
}