6 lines
71 B
C++
6 lines
71 B
C++
#define NULL 0
|
|
void f(void) {
|
|
char *str = NULL; // ok
|
|
(void)str;
|
|
}
|