Redo libtool_exp_merge_1 initial merge/commit

git-svn-id: file:///home/jj/hercules.svn/trunk@1958 956126f8-22a0-4046-8f4a-272fa8102e63
This commit is contained in:
Ivan Warren
2003-09-15 13:47:10 +00:00
parent 9e08179a00
commit 4e6933f81c
7 changed files with 11297 additions and 0 deletions

15
bootstrap.c Normal file
View File

@@ -0,0 +1,15 @@
#include "hercules.h"
/* Hercules boostrap dummy code */
#if defined(HDL_USE_LIBTOOL)
#include "ltdl.h"
#endif
extern int impl(int ac,char **av);
int main(int ac,char *av[])
{
#if defined(HDL_USE_LIBTOOL)
LTDL_SET_PRELOADED_SYMBOLS();
#endif
exit(impl(ac,av));
}