mirror of
https://github.com/reactos/reactos.git
synced 2025-07-29 08:21:38 +00:00
[CRT]
- Improve NULL definition. svn path=/trunk/; revision=48162
This commit is contained in:
parent
f0daba18dd
commit
ce8b9f4fcb
1 changed files with 4 additions and 0 deletions
|
@ -17,8 +17,12 @@ extern "C" {
|
|||
|
||||
#ifndef NULL
|
||||
#ifdef __cplusplus
|
||||
#ifndef _WIN64
|
||||
#define NULL 0
|
||||
#else
|
||||
#define NULL 0LL
|
||||
#endif /* W64 */
|
||||
#else
|
||||
#define NULL ((void *)0)
|
||||
#endif
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue