mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-04 07:24:22 +08:00
ab2edb9e33
in comments or local variable names.
16 lines
278 B
C
16 lines
278 B
C
#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;
|
|
}
|