15 lines
201 B
C++
15 lines
201 B
C++
#ifndef _STDDEF_H
|
|
#define _STDDEF_H
|
|
|
|
#if __cplusplus >= 201103L
|
|
#define NULL nullptr
|
|
#elif defined(__cplusplus)
|
|
#define NULL 0L
|
|
#else
|
|
#define NULL ((void*)0)
|
|
#endif
|
|
|
|
#include <bits/alltypes.h>
|
|
|
|
#endif
|