From: Alan Cox Date: Fri, 22 May 2015 23:12:49 +0000 (+0100) Subject: clock_gettime: don't leak internal function symbols X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=cdd8da9db8e6b0aee169f5ea8190765a2e50f01a;p=FUZIX.git clock_gettime: don't leak internal function symbols --- diff --git a/Library/libs/clock_gettime.c b/Library/libs/clock_gettime.c index cfcdcff6..5bd46809 100644 --- a/Library/libs/clock_gettime.c +++ b/Library/libs/clock_gettime.c @@ -4,7 +4,7 @@ /* Divide *tp by 10 and also return the remainder */ /* On processors with real idiv we should probably just use that */ -unsigned long div10quickm(unsigned long *tp) +static unsigned long div10quickm(unsigned long *tp) { unsigned long q, r, t; t = *tp;