summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorTim J. Robbins <tjr@FreeBSD.org>2003-01-10 02:54:37 +0000
committerTim J. Robbins <tjr@FreeBSD.org>2003-01-10 02:54:37 +0000
commit73e8989de89bd183280d1930445c04dc520331a5 (patch)
treefb2582587c52575512f2527447e90e1558b7064e /lib/libc
parent826f01cb9ee1c24bcbb154f743e605fa2d3e6d67 (diff)
Notes
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/gen/getcwd.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libc/gen/getcwd.c b/lib/libc/gen/getcwd.c
index fd6f53cd15c8..0b318f55a7b8 100644
--- a/lib/libc/gen/getcwd.c
+++ b/lib/libc/gen/getcwd.c
@@ -54,6 +54,8 @@ __FBSDID("$FreeBSD$");
(dp->d_name[0] == '.' && (dp->d_name[1] == '\0' || \
(dp->d_name[1] == '.' && dp->d_name[2] == '\0')))
+extern int __getcwd(char *, size_t);
+
char *
getcwd(pt, size)
char *pt;