Iros
 
Loading...
Searching...
No Matches
null.h
Go to the documentation of this file.
1#pragma once
2
3#include <ccpp/bits/config.h>
4
5#ifdef __cplusplus
6#if (__cplusplus <= 199711L)
7#define NULL (0)
8#else
9#define NULL (nullptr)
10#endif
11#else
12#define NULL ((void*) 0)
13#endif