diff options
Diffstat (limited to 'lib_i386/board.c')
-rw-r--r-- | lib_i386/board.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lib_i386/board.c b/lib_i386/board.c index 22191e6acfa..55fa42af424 100644 --- a/lib_i386/board.c +++ b/lib_i386/board.c @@ -108,19 +108,6 @@ void *sbrk (ptrdiff_t increment) return ((void *) old); } -char *strmhz (char *buf, long hz) -{ - long l, n; - long m; - - n = hz / 1000000L; - l = sprintf (buf, "%ld", n); - m = (hz % 1000000L) / 1000L; - if (m != 0) - sprintf (buf + l, ".%03ld", m); - return (buf); -} - /************************************************************************ * Init Utilities * ************************************************************************ |