diff options
| author | Garrett Wollman <wollman@FreeBSD.org> | 1993-12-21 18:36:48 +0000 | 
|---|---|---|
| committer | Garrett Wollman <wollman@FreeBSD.org> | 1993-12-21 18:36:48 +0000 | 
| commit | e7c996d95e438eb882cfb523ba6e047f12adb01f (patch) | |
| tree | 726a343c62286ac7f6753b0f898e58cdcf285af6 /usr.sbin/xntpd/lib/lib_strbuf.c | |
Diffstat (limited to 'usr.sbin/xntpd/lib/lib_strbuf.c')
| -rw-r--r-- | usr.sbin/xntpd/lib/lib_strbuf.c | 21 | 
1 files changed, 21 insertions, 0 deletions
| diff --git a/usr.sbin/xntpd/lib/lib_strbuf.c b/usr.sbin/xntpd/lib/lib_strbuf.c new file mode 100644 index 000000000000..15661ab980ad --- /dev/null +++ b/usr.sbin/xntpd/lib/lib_strbuf.c @@ -0,0 +1,21 @@ +/* lib_strbuf.c,v 3.1 1993/07/06 01:08:27 jbj Exp + * 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; +} | 
