summaryrefslogtreecommitdiff
path: root/src/tpax.c
blob: be9d920541397a50abf2bdf72993604a8084f305 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**************************************************************/
/*  tpax: a topological pax implementation                    */
/*  Copyright (C) 2020--2021  SysDeer Technologies, LLC       */
/*  Released under GPLv2 and GPLv3; see COPYING.TPAX.         */
/**************************************************************/

#include <tpax/tpax.h>

#define TPAX_UNUSED_PARAMETER(p) (void)p

int main(int argc, char ** argv, char ** envp)
{
	TPAX_UNUSED_PARAMETER(argc);
	return tpax_main(argv,envp,0);
}