*** empty log message ***

This commit is contained in:
2005-02-07 15:10:41 +00:00
parent d75ec654c9
commit ffe1527b0b
9 changed files with 63 additions and 58 deletions

View File

@ -33,6 +33,8 @@ int to_int (const xp_char_t* str)
return r;
}
#include <locale.h>
int xp_main (int argc, xp_char_t* argv[])
{
xp_lisp_t* lisp;
@ -41,6 +43,9 @@ int xp_main (int argc, xp_char_t* argv[])
#ifdef LINUX
mtrace ();
#endif
setlocale (LC_ALL, "");
if (argc != 3) {
xp_fprintf (xp_stderr, XP_TEXT("usage: %s mem_ubound mem_ubound_inc\n"), argv[0]);
return -1;