+2006-11-14 Jim Meyering <jim@meyering.net>
+
+ * readlink-stub.c, lstat-stub.c: Remove now-unused files.
+
2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
Port sha512sum to hosts where uintmax_t is only 32 bits, e.g.,
+++ /dev/null
-#include <config.h>
-#include <sys/stat.h>
-
-/* 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);
-}
+++ /dev/null
-#include <config.h>
-#include <stddef.h>
-#include <errno.h>
-
-/* A trivial substitute for `readlink'.
-
- DJGPP 2.03 and earlier don't have `readlink' and don't support
- symlinks. */
-
-int
-readlink (const char *file, char *buffer, size_t size)
-{
- errno = EINVAL;
- return -1;
-}