From: Levi Morrison Date: Wed, 6 Nov 2019 17:30:09 +0000 (-0700) Subject: Wrap hrtime in `extern "c" {}` X-Git-Tag: php-7.3.13RC1~22 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b9dfa12853c0f43ce76221d54cfd0568f674bac1;p=php Wrap hrtime in `extern "c" {}` This allows it to be used by C++ extensions without them having to do their own forward declares. Closes GH-4890. --- diff --git a/ext/standard/hrtime.h b/ext/standard/hrtime.h index c532845187..1c08b07502 100644 --- a/ext/standard/hrtime.h +++ b/ext/standard/hrtime.h @@ -20,6 +20,8 @@ #ifndef HRTIME_H #define HRTIME_H +#include + #define PHP_HRTIME_PLATFORM_POSIX 0 #define PHP_HRTIME_PLATFORM_WINDOWS 0 #define PHP_HRTIME_PLATFORM_APPLE 0 @@ -45,6 +47,8 @@ #define HRTIME_AVAILABLE (PHP_HRTIME_PLATFORM_POSIX || PHP_HRTIME_PLATFORM_WINDOWS || PHP_HRTIME_PLATFORM_APPLE || PHP_HRTIME_PLATFORM_HPUX || PHP_HRTIME_PLATFORM_AIX) +BEGIN_EXTERN_C() + typedef uint64_t php_hrtime_t; PHPAPI php_hrtime_t php_hrtime_current(void); @@ -53,4 +57,6 @@ PHP_MINIT_FUNCTION(hrtime); PHP_FUNCTION(hrtime); +END_EXTERN_C() + #endif /* HRTIME_H */