diff --git a/reactos/ChangeLog b/reactos/ChangeLog index 6eb10082a5b..d77c3954840 100644 --- a/reactos/ChangeLog +++ b/reactos/ChangeLog @@ -1,3 +1,8 @@ +2003-01-15 Casper S. Hornstrup + + * apps/testsets/Makefile (TEST_SETS): Remove ldr. + * include/msvcrt/ctype.h (towupper): Make returntype wchar_t. + 2003-01-15 Casper S. Hornstrup * tools/rtouch.c: Include , not . diff --git a/reactos/apps/testsets/Makefile b/reactos/apps/testsets/Makefile index 38e573c66eb..8aaf049f684 100644 --- a/reactos/apps/testsets/Makefile +++ b/reactos/apps/testsets/Makefile @@ -8,7 +8,7 @@ include $(PATH_TO_TOP)/rules.mak # Testset applications -TEST_SETS = ldr loadlib +TEST_SETS = loadlib TEST_KERNEL32 = diff --git a/reactos/include/msvcrt/ctype.h b/reactos/include/msvcrt/ctype.h index 30f86949be1..3b6483a8878 100644 --- a/reactos/include/msvcrt/ctype.h +++ b/reactos/include/msvcrt/ctype.h @@ -18,9 +18,9 @@ * DISCLAIMED. This includes but is not limited to warranties of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * - * $Revision: 1.6 $ - * $Author: robd $ - * $Date: 2003/01/15 20:05:50 $ + * $Revision: 1.7 $ + * $Author: chorns $ + * $Date: 2003/01/15 21:07:18 $ * */ @@ -120,9 +120,9 @@ int iswupper(wint_t); int iswxdigit(wint_t); //wchar_t towlower(wchar_t); -//wchar_t towupper(wchar_t); +wchar_t towupper(wchar_t); int towlower(wint_t); -int towupper(wint_t); +//int towupper(wint_t); int isleadbyte(int);