1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00

Fix link functions problem.

This commit is contained in:
Andrey Hristov
1999-07-28 13:59:35 +00:00
parent d69ec49dc6
commit 5aa3eff94f
3 changed files with 7 additions and 9 deletions

View File

@@ -172,6 +172,12 @@ function_entry basic_functions[] = {
PHP_FE(urldecode, NULL)
PHP_FE(rawurlencode, NULL)
PHP_FE(rawurldecode, NULL)
PHP_FE(readlink, NULL)
PHP_FE(linkinfo, NULL)
PHP_FE(symlink, NULL)
PHP_FE(link, NULL)
PHP_FE(unlink, NULL)
PHP_FE(exec, second_and_third_args_force_ref)
PHP_FE(system, second_arg_force_ref)

View File

@@ -182,15 +182,6 @@ PHP_FUNCTION(unlink)
}
/* }}} */
function_entry link_functions[] = {
PHP_FE(readlink, NULL)
PHP_FE(linkinfo, NULL)
PHP_FE(symlink, NULL)
PHP_FE(link, NULL)
PHP_FE(unlink, NULL)
{NULL, NULL, NULL}
};
/*
* Local variables:

View File

@@ -275,6 +275,7 @@ extern char **environ;
extern void phperror(char *error);
extern PHPAPI void php3_error(int type, const char *format,...);
extern PHPAPI int php3_write(void *buf, int size);
extern PHPAPI int php3_printf(const char *format,...);
extern void php3_log_err(char *log_message);
extern int Debug(char *format,...);