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