[CRT]
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Sun, 30 May 2010 22:28:00 +0000 (22:28 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Sun, 30 May 2010 22:28:00 +0000 (22:28 +0000)
- 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

index e6c422d..29a7212 100644 (file)
@@ -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