not needed anymore, since we're now using shared objects instead of an

executable
This commit is contained in:
frese 2003-12-16 14:07:33 +00:00
parent 23e02fea42
commit b8640603e8
1 changed files with 0 additions and 24 deletions

View File

@ -1,24 +0,0 @@
#include "scheme48.h"
#include "c/config.h"
extern void scx_init_xlib();
#ifdef WITH_XFT
extern void scx_xft_init();
extern void scx_xrender_init();
#endif
/*extern void scx_init_xpm();*/
int main(int argc, char **argv) {
s48_add_external_init(scx_init_xlib);
#ifdef WITH_XFT
s48_add_external_init(scx_xft_init);
s48_add_external_init(scx_xrender_init);
#endif
/*s48_add_external_init(scx_init_xpm);*/
return s48_main(10000000, 64000,
SCSHIMAGE,
--argc, ++argv);
}