Deleted Added
1
2/*
3 * Copyright (C) Max Romanov
4 * Copyright (C) Valentin V. Bartenev
5 * Copyright (C) NGINX, Inc.
6 */
7
8#include "php.h"

--- 152 unchanged lines hidden (view full) ---

161 NXT_VERNUM, NXT_DEBUG,
162};
163
164
165NXT_EXPORT nxt_application_module_t nxt_app_module = {
166 sizeof(compat),
167 compat,
168 nxt_string("php"),
169 nxt_string(PHP_VERSION),
170 nxt_php_init,
171 nxt_php_run,
172 NULL,
173};
174
175
176nxt_inline u_char *
177nxt_realpath(const void *c)

--- 601 unchanged lines hidden ---