diff options
| author | Jakob Kaivo <jkk@ung.org> | 2019-02-09 16:13:47 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2019-02-09 16:13:47 -0500 |
| commit | 294c0451d5625fd01cbc9b3270daf4425132d524 (patch) | |
| tree | dffbbe6e59e3e47e378cfce0afbc26a1c8304ffb /src/sys/stat/lstat.c | |
| parent | 94c01485caa0ab48ca956572d6f024f5a3f9e355 (diff) | |
merge XOPEN identifiers
Diffstat (limited to 'src/sys/stat/lstat.c')
| -rw-r--r-- | src/sys/stat/lstat.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/sys/stat/lstat.c b/src/sys/stat/lstat.c new file mode 100644 index 00000000..ea56ce24 --- /dev/null +++ b/src/sys/stat/lstat.c @@ -0,0 +1,12 @@ +#include <sys/stat.h> + +int lstat(const char * restrict path, struct stat * restrict buf) +{ + /* if path is a symlink, return that info */ + return 0; +} + +/* +XOPEN(400) +POSIX(200112) +*/ |
