From: Andre Noll Date: Mon, 25 Jun 2012 16:16:58 +0000 (+0200) Subject: fd.c: Make __chdir() static. X-Git-Tag: v1.0.0~25 X-Git-Url: http://git.tuebingen.mpg.de/?p=adu.git;a=commitdiff_plain;h=b28313671025c02d96f2dd7927018b8e54bf4fec;hp=2d7a4d61bfa10e3f462053936dcf7fd416b629d0 fd.c: Make __chdir() static. This function is only used in fd.c. --- 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);