mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
no message
svn path=/trunk/; revision=510
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user