summaryrefslogtreecommitdiff
path: root/src/slibtool.c
blob: 6ef094599aa0d505dca19e4cef3119c47e03ae05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*******************************************************************/
/*  slibtool: a strong libtool implementation, written in C        */
/*  Copyright (C) 2016--2025  SysDeer Technologies, LLC            */
/*  Released under the Standard MIT License; see COPYING.SLIBTOOL. */
/*******************************************************************/

#include <slibtool/slibtool.h>

#define SLBT_UNUSED_PARAMETER(p) (void)p

int main(int argc, char ** argv, char ** envp)
{
	SLBT_UNUSED_PARAMETER(argc);
	return slbt_main(argv,envp,0);
}