Imported Upstream version 1.23
[debian/tar] / lib / fchown-stub.c
diff --git a/lib/fchown-stub.c b/lib/fchown-stub.c
deleted file mode 100644 (file)
index 6be750b..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#include <config.h>
-
-#include <sys/types.h>
-#include <errno.h>
-
-/* 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;
-}