From b28313671025c02d96f2dd7927018b8e54bf4fec Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Mon, 25 Jun 2012 18:16:58 +0200 Subject: [PATCH] fd.c: Make __chdir() static. This function is only used in fd.c. --- fd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fd.c b/fd.c index e661e71..a4d18a1 100644 --- a/fd.c +++ b/fd.c @@ -124,7 +124,7 @@ out: * * \return Standard. */ -int __chdir(const char *path) +static int __chdir(const char *path) { int ret = chdir(path); -- 2.39.2