Author: ros-arm-bringup Date: Sun Jul 12 14:40:39 2009 New Revision: 41916
URL: http://svn.reactos.org/svn/reactos?rev=41916&view=rev Log: Revert the change to tcsrchr, it should be a XINT not a TCHAR
Modified: trunk/reactos/lib/sdk/crt/string/tcsrchr.h
Modified: trunk/reactos/lib/sdk/crt/string/tcsrchr.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/tcsrchr.... ============================================================================== --- trunk/reactos/lib/sdk/crt/string/tcsrchr.h [iso-8859-1] (original) +++ trunk/reactos/lib/sdk/crt/string/tcsrchr.h [iso-8859-1] Sun Jul 12 14:40:39 2009 @@ -3,7 +3,7 @@
#include <tchar.h>
-_TCHAR * _tcsrchr(const _TCHAR * s, _TCHAR c) +_TCHAR * _tcsrchr(const _TCHAR * s, _XINT c) { _TCHAR cc = c; const _TCHAR * sp = (_TCHAR *)0;