clock_gettime: don't leak internal function symbols
authorAlan Cox <alan@linux.intel.com>
Fri, 22 May 2015 23:12:49 +0000 (00:12 +0100)
committerAlan Cox <alan@linux.intel.com>
Fri, 22 May 2015 23:12:49 +0000 (00:12 +0100)
Library/libs/clock_gettime.c

index cfcdcff..5bd4680 100644 (file)
@@ -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;