diff options
author | kurt <> | 2013-04-05 12:59:54 +0000 |
---|---|---|
committer | kurt <> | 2013-04-05 12:59:54 +0000 |
commit | b3bb5c7891cd039f5ca62445da67469a2847fb52 (patch) | |
tree | e65c7aa20e1a96135977c3725f6e108b01c57f12 /src | |
parent | 11cff5d994e806966b04b96f75aa037925affc34 (diff) | |
download | openbsd-b3bb5c7891cd039f5ca62445da67469a2847fb52.tar.gz openbsd-b3bb5c7891cd039f5ca62445da67469a2847fb52.tar.bz2 openbsd-b3bb5c7891cd039f5ca62445da67469a2847fb52.zip |
- Add comments regarding copies of these files also in libexec/ld.so
okay guenther@
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libc/stdlib/realpath.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libc/stdlib/realpath.c b/src/lib/libc/stdlib/realpath.c index 534f48d4b4..e0f9b123b3 100644 --- a/src/lib/libc/stdlib/realpath.c +++ b/src/lib/libc/stdlib/realpath.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: realpath.c,v 1.15 2012/09/13 15:39:05 deraadt Exp $ */ | 1 | /* $OpenBSD: realpath.c,v 1.16 2013/04/05 12:59:54 kurt Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru> | 3 | * Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru> |
4 | * | 4 | * |
@@ -35,6 +35,8 @@ | |||
35 | #include <string.h> | 35 | #include <string.h> |
36 | #include <unistd.h> | 36 | #include <unistd.h> |
37 | 37 | ||
38 | /* A slightly modified copy of this file exists in libexec/ld.so */ | ||
39 | |||
38 | /* | 40 | /* |
39 | * char *realpath(const char *path, char resolved[PATH_MAX]); | 41 | * char *realpath(const char *path, char resolved[PATH_MAX]); |
40 | * | 42 | * |