diff options
author | Ard Biesheuvel <abies@php.net> | 2003-09-02 13:34:23 +0000 |
---|---|---|
committer | Ard Biesheuvel <abies@php.net> | 2003-09-02 13:34:23 +0000 |
commit | 3d6426ee14a38bed1ebbccaf75d8eccfd7d08060 (patch) | |
tree | 41b93ebc793dff295dfa21a617098b4d7221540d /main/php_main.h | |
parent | 469b746b4d4c678a7fc511dd74160a322b16868a (diff) | |
download | php-git-3d6426ee14a38bed1ebbccaf75d8eccfd7d08060.tar.gz |
Fix use of EXTERN_C macros
Diffstat (limited to 'main/php_main.h')
-rw-r--r-- | main/php_main.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/php_main.h b/main/php_main.h index bc74da8ef4..10825e709a 100644 --- a/main/php_main.h +++ b/main/php_main.h @@ -26,7 +26,7 @@ #include "php_globals.h" #include "SAPI.h" -BEGIN_EXTERN_C(); +BEGIN_EXTERN_C() PHPAPI int php_request_startup(TSRMLS_D); PHPAPI void php_request_shutdown(void *dummy); PHPAPI void php_request_shutdown_for_exec(void *dummy); @@ -53,6 +53,6 @@ extern void php_call_shutdown_functions(void); /* environment module */ extern int php_init_environ(void); extern int php_shutdown_environ(void); -END_EXTERN_C(); +END_EXTERN_C() #endif |