]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/ntp/libntp/lib_strbuf.c
This commit was generated by cvs2svn to compensate for changes in r56889,
[FreeBSD/FreeBSD.git] / contrib / ntp / libntp / lib_strbuf.c
1 /*
2  * lib_strbuf - library string storage
3  */
4
5 #include "lib_strbuf.h"
6
7 /*
8  * Storage declarations
9  */
10 char lib_stringbuf[LIB_NUMBUFS][LIB_BUFLENGTH];
11 int lib_nextbuf;
12 int lib_inited = 0;
13
14 /*
15  * initialization routine.  Might be needed if the code is ROMized.
16  */
17 void
18 init_lib(void)
19 {
20         lib_nextbuf = 0;
21         lib_inited = 1;
22 }