PatchworkOS
Loading...
Searching...
No Matches
NULL.h
Go to the documentation of this file.
1#ifndef _AUX_NULL_H
2#define _AUX_NULL_H 1
3
4#ifdef __cplusplus
5#if __cplusplus >= 201103L
6#define _NULL nullptr
7#else
8#define _NULL 0
9#endif
10#else
11#define _NULL ((void*)0)
12#endif
13
23#define NULL _NULL
24
25#endif