From: Alex Dowad Date: Fri, 3 Jul 2020 20:27:50 +0000 (+0200) Subject: Remove useless definition of NULL in mbfl_string.h X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b7808d02e874faee6b90fac9e856736d7f8e05b2;p=php Remove useless definition of NULL in mbfl_string.h If NULL is not defined by the platform, mbfl_defs.h already defines it. --- diff --git a/ext/mbstring/libmbfl/mbfl/mbfl_string.h b/ext/mbstring/libmbfl/mbfl/mbfl_string.h index d96a77cca7..cdf43758bb 100644 --- a/ext/mbstring/libmbfl/mbfl/mbfl_string.h +++ b/ext/mbstring/libmbfl/mbfl/mbfl_string.h @@ -49,8 +49,4 @@ MBFLAPI extern void mbfl_string_init(mbfl_string *string); MBFLAPI extern void mbfl_string_init_set(mbfl_string *string, const mbfl_encoding *encoding); MBFLAPI extern void mbfl_string_clear(mbfl_string *string); -#ifndef NULL -#define NULL 0 -#endif - #endif /* MBFL_STRING_H */