Check in ftok() function by Andrew Sitnikov <sitnikov@infonet.ee>

This commit is contained in:
Stanislav Malyshev 2001-11-15 09:53:40 +00:00
parent 15f0f8ae23
commit 39f3075500
5 changed files with 105 additions and 1 deletions

View file

@ -792,6 +792,13 @@ function_entry basic_functions[] = {
/* functions from versioning.c */
PHP_FE(version_compare, NULL)
/* functions from ftok.c*/
#if HAVE_SYSVSEM || HAVE_SYSVSHM || HAVE_SHMOP
PHP_FE(ftok, NULL)
#else
PHP_FALIAS(ftok , warn_not_available, NULL)
#endif
{NULL, NULL, NULL}
};