mirror of
https://github.com/reactos/reactos.git
synced 2025-05-20 17:45:06 +00:00
[CRT]
- Don't define __int64 for clang (patch by Amine Khaldi) - Fix file and purpose in the header svn path=/trunk/; revision=47471
This commit is contained in:
parent
5de258d708
commit
2991d5eb42
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue