Author: tkreuzer Date: Mon May 31 00:28:00 2010 New Revision: 47471
URL: http://svn.reactos.org/svn/reactos?rev=47471&view=rev Log: [CRT] - Don't define __int64 for clang (patch by Amine Khaldi) - Fix file and purpose in the header
Modified: trunk/reactos/lib/sdk/crt/string/strset.c
Modified: trunk/reactos/lib/sdk/crt/string/strset.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/strset.c... ============================================================================== --- trunk/reactos/lib/sdk/crt/string/strset.c [iso-8859-1] (original) +++ trunk/reactos/lib/sdk/crt/string/strset.c [iso-8859-1] Mon May 31 00:28:00 2010 @@ -1,14 +1,14 @@ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS system libraries - * FILE: lib/crt/?????? - * PURPOSE: Unknown + * FILE: lib/crt/strset.c + * PURPOSE: Implementation of _strnset and _strset * PROGRAMER: Unknown * UPDATE HISTORY: * 25/11/05: Added license header */
-#if defined(__GNUC__) +#if defined(__GNUC__) && !defined(__clang__) #define __int64 long long #endif