diff options
Diffstat (limited to 'contrib/ntp/libntp/inttoa.c')
-rw-r--r-- | contrib/ntp/libntp/inttoa.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/contrib/ntp/libntp/inttoa.c b/contrib/ntp/libntp/inttoa.c deleted file mode 100644 index f270733..0000000 --- a/contrib/ntp/libntp/inttoa.c +++ /dev/null @@ -1,20 +0,0 @@ -/* - * inttoa - return an asciized signed integer - */ -#include <stdio.h> - -#include "lib_strbuf.h" -#include "ntp_stdlib.h" - -char * -inttoa( - long ival - ) -{ - register char *buf; - - LIB_GETBUF(buf); - - (void) sprintf(buf, "%ld", (long)ival); - return buf; -} |