diff options
Diffstat (limited to 'contrib/ntp/libntp/numtoa.c')
-rw-r--r-- | contrib/ntp/libntp/numtoa.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/contrib/ntp/libntp/numtoa.c b/contrib/ntp/libntp/numtoa.c deleted file mode 100644 index de95118afe04..000000000000 --- a/contrib/ntp/libntp/numtoa.c +++ /dev/null @@ -1,24 +0,0 @@ -/* - * numtoa - return asciized network numbers store in local array space - */ -#include <stdio.h> - -#include "ntp_fp.h" -#include "lib_strbuf.h" -#include "ntp_stdlib.h" - -char * -numtoa( - u_int32 num - ) -{ - register u_int32 netnum; - register char *buf; - - netnum = ntohl(num); - LIB_GETBUF(buf); - (void) sprintf(buf, "%lu.%lu.%lu.%lu", ((u_long)netnum >> 24) & 0xff, - ((u_long)netnum >> 16) & 0xff, ((u_long)netnum >> 8) & 0xff, - (u_long)netnum & 0xff); - return buf; -} |