Christoph M. Becker 2020-05-27 09:58:10 +02:00
parent 536c02b003
commit 5a04796f76
27 changed files with 91 additions and 47 deletions

View file

@ -35,7 +35,17 @@ struct bug79096 {
uint64_t b;
};
ZEND_API struct bug79096 bug79096(void);
ZEND_API void bug79532(off_t *array, size_t elems);
#ifdef PHP_WIN32
# ifdef PHP_ZEND_TEST_EXPORTS
# define PHP_ZEND_TEST_API __declspec(dllexport)
# else
# define PHP_ZEND_TEST_API __declspec(dllimport)
# endif
#else
# define PHP_ZEND_TEST_API ZEND_API
#endif
PHP_ZEND_TEST_API struct bug79096 bug79096(void);
PHP_ZEND_TEST_API void bug79532(off_t *array, size_t elems);
#endif