summaryrefslogtreecommitdiff
path: root/src/treebnf.c
blob: 0b9862a60993a101fb303b381eef342099eea6c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
}