no message

svn path=/trunk/; revision=510
This commit is contained in:
Boudewijn Dekker 1999-05-24 15:14:14 +00:00
parent d21b624ded
commit 1cdff7f03d
3 changed files with 22 additions and 3 deletions

View file

@ -115,7 +115,26 @@ const struct map_cntr {
};
struct lconv _lconv;
struct lconv _lconv = {
'.', // decimal_point
',', // thousands_sep
"", // grouping;
"DOL", // int_curr_symbol
"$", // currency_symbol
'.', // mon_decimal_point
',', // mon_thousands_sep
"", // mon_grouping;
'+', // positive_sign
'-', // negative_sign
2, // int_frac_digits
2, // frac_digits
1, // p_cs_precedes
1, // p_sep_by_space
1, // n_cs_precedes
1, // n_sep_by_space
1, // p_sign_posn;
1 // n_sign_posn;
};
struct lconv *localeconv(void)
{

View file

@ -27,7 +27,7 @@ DIRECT_OBJECTS = direct/chdir.o direct/chdrive.o direct/getcwd.o direct/getdrive
EXCEPT_OBJECTS = except/unwind.o except/abnorter.o except/exhand2.o except/matherr.o
LOCALE_OBJECTS = # locale/locale.o
LOCALE_OBJECTS = locale/locale.o
MALLOC_OBJECTS = malloc/expand.o malloc/heap.o

View file

@ -28,7 +28,7 @@ int system(const char *command)
// system should return 0 if command is null and the shell is found
if ( command == NULL ) {
if ( szComspec == NULL )
if ( szComSpec == NULL )
return 0;
else
return -1;