Blame src/tpax.c

88751e
/******************************************************/
88751e
/*  tpax: a topological pax implementation            */
07e762
/*  Copyright (C) 2020--2021  Z. Gilboa               */
88751e
/*  Released under GPLv2 and GPLv3; see COPYING.TPAX. */
88751e
/******************************************************/
88751e
88751e
#include <tpax/tpax.h>
88751e
fc92e6
#define TPAX_UNUSED_PARAMETER(p) (void)p
fc92e6
88751e
int main(int argc, char ** argv, char ** envp)
88751e
{
fc92e6
	TPAX_UNUSED_PARAMETER(argc);
88751e
	return tpax_main(argv,envp,0);
88751e
}