From 2991d5eb42e36cef50e56502dd7bed9cea14d13e Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Sun, 30 May 2010 22:28:00 +0000 Subject: [PATCH] [CRT] - Don't define __int64 for clang (patch by Amine Khaldi) - Fix file and purpose in the header svn path=/trunk/; revision=47471 --- reactos/lib/sdk/crt/string/strset.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/lib/sdk/crt/string/strset.c b/reactos/lib/sdk/crt/string/strset.c index e6c422d4f9c..29a72121197 100644 --- a/reactos/lib/sdk/crt/string/strset.c +++ b/reactos/lib/sdk/crt/string/strset.c @@ -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