blob: 9b97705d00c17baa5d6e5c75c33ce5f18efa827b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*******************************************************************/
/* slibtool: a skinny libtool implementation, written in C */
/* Copyright (C) 2016 Z. Gilboa */
/* Released under the Standard MIT License; see COPYING.SLIBTOOL. */
/*******************************************************************/
#include <slibtool/slibtool.h>
int main(int argc, char ** argv, char ** envp)
{
return slbt_main(argc,argv,envp);
}
|