Skip to content

Commit 1e10aca

Browse files
committed
remove PHPAPI macro as we don't export these functions
1 parent bc1fa6f commit 1e10aca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frankenphp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ bool frankenphp_shutdown_dummy_request(void) {
204204
return true;
205205
}
206206

207-
PHPAPI void get_full_env(zval *track_vars_array) {
207+
void get_full_env(zval *track_vars_array) {
208208
go_getfullenv(thread_index, track_vars_array);
209209
}
210210

@@ -1265,7 +1265,7 @@ static zend_module_entry *modules = NULL;
12651265
static int modules_len = 0;
12661266
static int (*original_php_register_internal_extensions_func)(void) = NULL;
12671267

1268-
PHPAPI int register_internal_extensions(void) {
1268+
int register_internal_extensions(void) {
12691269
if (original_php_register_internal_extensions_func != NULL &&
12701270
original_php_register_internal_extensions_func() != SUCCESS) {
12711271
return FAILURE;

0 commit comments

Comments
 (0)