mirror of
https://github.com/php/php-src.git
synced 2026-04-09 17:13:31 +02:00
17 lines
198 B
C
17 lines
198 B
C
#include "SAPI.h"
|
|
#include "TSRM.h"
|
|
|
|
|
|
#ifdef ZTS
|
|
int sapi_globals_id;
|
|
#endif
|
|
|
|
|
|
void sapi_startup()
|
|
{
|
|
#ifdef ZTS
|
|
sapi_globals_id = ts_allocate_id(sizeof(sapi_globals_struct), NULL, NULL);
|
|
#endif
|
|
}
|
|
|