diff options
author | Ollivier Robert <roberto@FreeBSD.org> | 2008-08-17 17:37:33 +0000 |
---|---|---|
committer | Ollivier Robert <roberto@FreeBSD.org> | 2008-08-17 17:37:33 +0000 |
commit | cce65f439697627afbccf5a67035a957bb4d784a (patch) | |
tree | 16d100fbc9dae63888d48b464e471ba0e5065193 /contrib/ntp/libntp/numtoa.c | |
parent | 8c24a1e0ffd629427f94da1b681600008030c41a (diff) |
Flatten the dist and various 4.n.n trees in preparation of future ntp imports.
Notes
Notes:
svn path=/vendor/ntp/dist/; revision=181800
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; -} |