summaryrefslogtreecommitdiffstats
path: root/usr.sbin/xntpd/lib/lib_strbuf.c
blob: 47df66decd21c08a9eec0f4833d74f324ae0991d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * lib_strbuf - library string storage
 */

#include "lib_strbuf.h"

/*
 * Storage declarations
 */
char lib_stringbuf[LIB_NUMBUFS][LIB_BUFLENGTH];
int lib_nextbuf;


/*
 * initialization routine.  Might be needed if the code is ROMized.
 */
void
init_lib()
{
	lib_nextbuf = 0;
}
OpenPOWER on IntegriCloud