From 30593686a860c3021d64521927e6bbea7c3b2a05 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 13 Mar 2003 13:07:11 +0000 Subject: . --- lib/fchown-stub.c | 14 ++++++++++++++ lib/lstat-stub.c | 12 ++++++++++++ lib/readlink-stub.c | 14 ++++++++++++++ 3 files changed, 40 insertions(+) create mode 100644 lib/fchown-stub.c create mode 100644 lib/lstat-stub.c create mode 100644 lib/readlink-stub.c (limited to 'lib') diff --git a/lib/fchown-stub.c b/lib/fchown-stub.c new file mode 100644 index 000000000..6e7c4f925 --- /dev/null +++ b/lib/fchown-stub.c @@ -0,0 +1,14 @@ +#include +#include +#include + +/* A trivial substitute for `fchown'. + + DJGPP 2.03 and earlier (and perhaps later) don't have `fchown', + so we pretend no-one has permission for this operation. */ + +int fchown (int fd, uid_t uid, gid_t gid) +{ + errno = EPERM; + return -1; +} diff --git a/lib/lstat-stub.c b/lib/lstat-stub.c new file mode 100644 index 000000000..9ed163598 --- /dev/null +++ b/lib/lstat-stub.c @@ -0,0 +1,12 @@ +#include +#include + +/* A trivial substitute for `lstat'. + + DJGPP 2.03 and earlier don't have `lstat' and don't support + symlinks. */ + +int lstat (const char *fname, struct stat *st_buf) +{ + return stat (fname, st_buf); +} diff --git a/lib/readlink-stub.c b/lib/readlink-stub.c new file mode 100644 index 000000000..2dba74a33 --- /dev/null +++ b/lib/readlink-stub.c @@ -0,0 +1,14 @@ +#include +#include +#include + +/* A trivial substitute for `readlink'. + + DJGPP 2.03 and earlier don't have `readlink' and don't support + symlinks. */ + +int readlink (const char *filename, char *buffer, size_t size) +{ + errno = EINVAL; + return -1; +} -- cgit v1.2.3-54-g00ecf