aboutsummaryrefslogtreecommitdiff
path: root/contrib/ntp/libntp/lib_strbuf.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ntp/libntp/lib_strbuf.c')
-rw-r--r--contrib/ntp/libntp/lib_strbuf.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/contrib/ntp/libntp/lib_strbuf.c b/contrib/ntp/libntp/lib_strbuf.c
new file mode 100644
index 000000000000..690f1ad28610
--- /dev/null
+++ b/contrib/ntp/libntp/lib_strbuf.c
@@ -0,0 +1,22 @@
+/*
+ * lib_strbuf - library string storage
+ */
+
+#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;
+}