Blob Blame History Raw
/**************************************************************/
/*  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;
}