Skip to content

Commit 8e04700

Browse files
committed
Fix ifdef
1 parent 6fbd1c0 commit 8e04700

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

ext/standard/basic_functions.stub.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@
343343
*/
344344
const PHP_ROUND_HALF_ODD = UNKNOWN;
345345

346-
#if defined(PHP_WIN32) || (defined(HAVE_DNS_SEARCH_FUNC) && defined(HAVE_FULL_DNS_FUNCS))
346+
#if (defined(PHP_WIN32) || (defined(HAVE_DNS_SEARCH_FUNC) && defined(HAVE_FULL_DNS_FUNCS)))
347347
/**
348348
* @var int
349349
* @cvalue PHP_DNS_A
@@ -374,7 +374,7 @@
374374
* @cvalue PHP_DNS_HINFO
375375
*/
376376
const DNS_HINFO = UNKNOWN;
377-
#if !defined(PHP_WIN32)
377+
#if (!defined(PHP_WIN32))
378378
/**
379379
* @var int
380380
* @cvalue PHP_DNS_CAA

ext/standard/basic_functions_arginfo.h

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)