repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
dist
/
ntp
/
libntp
/
lib_strbuf.c
blob
4417f80ea7e2feda25799b499c6749d697621677
1
/* $NetBSD$ */
2
3
/*
4
* lib_strbuf - library string storage
5
*/
6
7
#include
"ntp_stdlib.h"
8
#include
"lib_strbuf.h"
9
10
/*
11
* Storage declarations
12
*/
13
char
lib_stringbuf
[
LIB_NUMBUFS
][
LIB_BUFLENGTH
];
14
int
lib_nextbuf
;
15
int
lib_inited
=
0
;
16
17
/*
18
* initialization routine. Might be needed if the code is ROMized.
19
*/
20
void
21
init_lib
(
void
)
22
{
23
lib_nextbuf
=
0
;
24
lib_inited
=
1
;
25
}