commit 254b0ff9d871d848711fbb05a9f39fecb82a154e
parent 2d615ab80e231ffe43916c936d84eedaa84231a0
Author: Plat <plat@stellar-nexus.ru>
Date: Fri, 7 Nov 2025 19:23:09 +0000
Various fixes to ntree.cxx
Diffstat:
1 file changed, 9 insertions(+), 0 deletions(-)
diff --git a/ntree.cxx b/ntree.cxx
@@ -1,6 +1,9 @@
+#include <climits>
+#include <cstdint>
#include <iostream>
#include <vector>
+
#include "tree.h"
#include "config.h"
@@ -128,6 +131,12 @@ public:
}
};
+static void
+usage(void)
+{
+ eprintf("usage: %s [-c] [-s] [-d] [filename]\n", argv0);
+}
+
int
main(int argc, char *argv[])
{