Sync usage with man page.
[netbsd-mini2440.git] / dist / ntp / libntp / lib_strbuf.c
blob4417f80ea7e2feda25799b499c6749d697621677
1 /* $NetBSD$ */
3 /*
4 * lib_strbuf - library string storage
5 */
7 #include "ntp_stdlib.h"
8 #include "lib_strbuf.h"
11 * Storage declarations
13 char lib_stringbuf[LIB_NUMBUFS][LIB_BUFLENGTH];
14 int lib_nextbuf;
15 int lib_inited = 0;
18 * initialization routine. Might be needed if the code is ROMized.
20 void
21 init_lib(void)
23 lib_nextbuf = 0;
24 lib_inited = 1;