]> granicus.if.org Git - php/commitdiff
Fixed compiler warnings.
authorIlia Alshanetsky <iliaa@php.net>
Thu, 29 May 2003 23:39:41 +0000 (23:39 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Thu, 29 May 2003 23:39:41 +0000 (23:39 +0000)
ext/pcntl/pcntl.c
ext/pcntl/php_pcntl.h

index 17a87169ab85a13d103011bf744b6eca6cdee3a4..46630d625c2fcb3ba3fea0b2c1ed3cebcee7eb8d 100755 (executable)
@@ -76,6 +76,9 @@ zend_module_entry pcntl_module_entry = {
 #ifdef COMPILE_DL_PCNTL
 ZEND_GET_MODULE(pcntl)
 #endif
+
+static void pcntl_signal_handler(int);
+static void pcntl_tick_handler();
   
 void php_register_signal_constants(INIT_FUNC_ARGS)
 {
index ccca57813f3cbaca8379d4591c989e0f80097f74..8600c0d80085fc0c00f606ff7ab4d9e1137ace69 100644 (file)
@@ -53,10 +53,6 @@ PHP_FUNCTION(pcntl_exec);
 PHP_FUNCTION(pcntl_getpriority);
 PHP_FUNCTION(pcntl_setpriority);
 
-static void pcntl_signal_handler(int);
-static void pcntl_tick_handler();
-
-
 ZEND_BEGIN_MODULE_GLOBALS(pcntl)
        HashTable php_signal_table;
        zend_llist php_signal_queue;