NetBSD/dist/ntp/libntp/lib_strbuf.c
drochner d5e6f1b80b resolve conflicts
(in this case, throw away all local modifications; I'll start patching
from scratch)
2003-12-04 16:23:34 +00:00

26 lines
417 B
C

/* $NetBSD: lib_strbuf.c,v 1.3 2003/12/04 16:23:36 drochner Exp $ */
/*
* lib_strbuf - library string storage
*/
#include "ntp_stdlib.h"
#include "lib_strbuf.h"
/*
* Storage declarations
*/
char lib_stringbuf[LIB_NUMBUFS][LIB_BUFLENGTH];
int lib_nextbuf;
int lib_inited = 0;
/*
* initialization routine. Might be needed if the code is ROMized.
*/
void
init_lib(void)
{
lib_nextbuf = 0;
lib_inited = 1;
}