*** empty log message ***

This commit is contained in:
2005-05-21 15:55:50 +00:00
parent 85b20473ac
commit 70a5ead5cc
7 changed files with 59 additions and 52 deletions

View File

@ -5,6 +5,7 @@
#define xp_printf printf
#else
#include <xp/bas/stdio.h>
#include <xp/bas/locale.h>
#endif
#include <xp/stx/object.h>
@ -28,10 +29,12 @@ int xp_main (int argc, xp_char_t* argv[])
xp_stx_t stx;
xp_stx_word_t i;
#ifndef _DOS
if (xp_setlocale () == -1) {
printf ("cannot set locale\n");
return -1;
}
#endif
if (argc != 2) { /* TODO: argument processing */
xp_printf (XP_TEXT("Usage: %s [-f imageFile] MainClass\n"), argv[0]);