freebsd-nq/lib/libtcl/tclLoad.c
Poul-Henning Kamp 191d34825e Update to tcl7.5u1.
Add two scaffold files to (attempt) to make a tclsh compiled -static work.
1996-09-18 14:29:21 +00:00

11 lines
237 B
C

/*
* XXX: We don't have dlopen & friends in statically linked programs
* XXX: so we avoid using them.
*/
#ifdef PIC
#include "../../../contrib/tcl/generic/tclLoad.c"
#else
#include "../../../contrib/tcl/generic/tclLoadNone.c"
#endif