diff options
author | Jason Greene <jason@php.net> | 2001-07-30 20:51:57 +0000 |
---|---|---|
committer | Jason Greene <jason@php.net> | 2001-07-30 20:51:57 +0000 |
commit | 2b1fe64d463867d61fc8856767f8d8a78d9d3d25 (patch) | |
tree | a8110cd24091b2a653e9dfe658f9ab2c78ace472 /ext/pcntl/php_pcntl.h | |
parent | 12ae3ac2d764fc50eadc3704f013cb3cae5bdeed (diff) | |
download | php-git-2b1fe64d463867d61fc8856767f8d8a78d9d3d25.tar.gz |
Removed space type-o
Fixed WS
Added $Id$ tags
Removed already completed TODO from README
Diffstat (limited to 'ext/pcntl/php_pcntl.h')
-rw-r--r-- | ext/pcntl/php_pcntl.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ext/pcntl/php_pcntl.h b/ext/pcntl/php_pcntl.h index 7154dcd4de..d80aadd138 100644 --- a/ext/pcntl/php_pcntl.h +++ b/ext/pcntl/php_pcntl.h @@ -16,6 +16,8 @@ +----------------------------------------------------------------------+ */ +/* $Id$ */ + #ifndef PHP_PCNTL_H #define PHP_PCNTL_H @@ -64,9 +66,9 @@ ZEND_BEGIN_MODULE_GLOBALS(pcntl) int processing_signal_queue; ZEND_END_MODULE_GLOBALS(pcntl) #ifdef ZTS -# define PCNTL_G(v) TSRMG(pcntl_globals_id, zend_pcntl_globals *, v) +#define PCNTL_G(v) TSRMG(pcntl_globals_id, zend_pcntl_globals *, v) #else -# define PCNTL_G(v) (pcntl_globals.v) +#define PCNTL_G(v) (pcntl_globals.v) #endif #endif /* PHP_PCNTL_H */ |