From cdd8da9db8e6b0aee169f5ea8190765a2e50f01a Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sat, 23 May 2015 00:12:49 +0100 Subject: [PATCH] clock_gettime: don't leak internal function symbols --- Library/libs/clock_gettime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1