]> granicus.if.org Git - php/commitdiff
There's really no need for an entire file for a one line function...
authorZeev Suraski <zeev@php.net>
Mon, 29 May 2000 16:13:38 +0000 (16:13 +0000)
committerZeev Suraski <zeev@php.net>
Mon, 29 May 2000 16:13:38 +0000 (16:13 +0000)
ext/standard/basic_functions.c
ext/standard/basic_functions.h
ext/standard/php_noavail.c [deleted file]
ext/standard/php_noavail.h [deleted file]

index 1d586944977e4bfdca1baa884a1585a71fff495f..cac92c13b32ac292da77af6dacf34cb6818f73ba 100644 (file)
@@ -327,6 +327,8 @@ function_entry basic_functions[] = {
        PHP_FE(extension_loaded,                        NULL)
        PHP_FE(get_extension_funcs,                     NULL)
 
+       PHP_FE(warn_not_available,                      NULL)
+
        PHP_FE(parse_ini_file,                          NULL)
 
        /* functions from reg.c */
@@ -2008,6 +2010,15 @@ PHP_FUNCTION(get_extension_funcs)
 /* }}} */
 
 
+
+/* This function is not directly accessible to end users */
+PHP_FUNCTION(warn_not_available)
+{
+       php_error(E_WARNING, "%s() is  not supported in this PHP build", get_active_function_name());
+    RETURN_FALSE;
+}
+
+
 /*
  * Local variables:
  * tab-width: 4
index 76b7ee5430caf9da0cc0e926b09f99a1ed0185d2..c76bb54575a42f2fbf89c4cfcb3aec16454aa894 100644 (file)
@@ -112,6 +112,8 @@ PHP_FUNCTION(get_loaded_extensions);
 PHP_FUNCTION(extension_loaded);
 PHP_FUNCTION(get_extension_funcs);
 
+PHP_FUNCTION(warn_not_available);
+
 /* From the INI parser */
 PHP_FUNCTION(parse_ini_file);
 
diff --git a/ext/standard/php_noavail.c b/ext/standard/php_noavail.c
deleted file mode 100644 (file)
index 7a53d3f..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
-   +----------------------------------------------------------------------+
-   | PHP version 4.0                                                      |
-   +----------------------------------------------------------------------+
-   | Copyright (c) 1997, 1998, 1999, 2000 The PHP Group                   |
-   +----------------------------------------------------------------------+
-   | This source file is subject to version 2.02 of the PHP license,      |
-   | that is bundled with this package in the file LICENSE, and is        |
-   | available at through the world-wide-web at                           |
-   | http://www.php.net/license/2_02.txt.                                 |
-   | If you did not receive a copy of the PHP license and are unable to   |
-   | obtain it through the world-wide-web, please send a note to          |
-   | license@php.net so we can mail you a copy immediately.               |
-   +----------------------------------------------------------------------+
-   | Authors: Hartmut Holzgraefe <hartmut@six.de>                         |
-   +----------------------------------------------------------------------+
-*/
-
-#include "php_noavail.h"
-
-PHP_FUNCTION(warn_not_available)
-{
-php_error(E_WARNING, 
-                                               "%s() is  not supported in this PHP build",
-                                               get_active_function_name());
-       RETURN_FALSE;
-}                   
diff --git a/ext/standard/php_noavail.h b/ext/standard/php_noavail.h
deleted file mode 100644 (file)
index a5dc3d7..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
-   +----------------------------------------------------------------------+
-   | PHP version 4.0                                                      |
-   +----------------------------------------------------------------------+
-   | Copyright (c) 1997, 1998, 1999, 2000 The PHP Group                   |
-   +----------------------------------------------------------------------+
-   | This source file is subject to version 2.02 of the PHP license,      |
-   | that is bundled with this package in the file LICENSE, and is        |
-   | available at through the world-wide-web at                           |
-   | http://www.php.net/license/2_02.txt.                                 |
-   | If you did not receive a copy of the PHP license and are unable to   |
-   | obtain it through the world-wide-web, please send a note to          |
-   | license@php.net so we can mail you a copy immediately.               |
-   +----------------------------------------------------------------------+
-   | Authors: Hartmut Holzgraefe <hartmut@six.de>                         |
-   +----------------------------------------------------------------------+
-*/
-
-
-#ifndef _PHP_NOAVAIL
-#define _PHP_NOAVAIL
-
-#include "php.h"
-
-PHP_FUNCTION(warn_not_available);                                              
-
-#endif /* _PHP_NOAVAIL */