summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/treebnf.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/treebnf.c b/src/treebnf.c
new file mode 100644
index 0000000..0b9862a
--- /dev/null
+++ b/src/treebnf.c
@@ -0,0 +1,15 @@
+/**************************************************************/
+/* treebnf: a tree oriented bnf library */
+/* Copyright (C) 2024 SysDeer Technologies, LLC */
+/* Released under GPLv2 and GPLv3; see COPYING.TREEBNF. */
+/**************************************************************/
+
+#define TBNF_UNUSED_PARAMETER(p) (void)p
+
+int main(int argc, char ** argv, char ** envp)
+{
+ TBNF_UNUSED_PARAMETER(argc);
+ TBNF_UNUSED_PARAMETER(argv);
+ TBNF_UNUSED_PARAMETER(envp);
+ return 0;
+}