diff options
| author | Derick Rethans <derick@php.net> | 2002-10-20 13:35:56 +0000 | 
|---|---|---|
| committer | Derick Rethans <derick@php.net> | 2002-10-20 13:35:56 +0000 | 
| commit | 3322581c04d2852d8f6ac2d5db82a0eb4a063a40 (patch) | |
| tree | cda9cb9fc2b4da17c22ea6c496aeea3d8400c931 /ext/standard/php_ftok.h | |
| parent | c5a73b31f6874d15f8a3ecb852a6dde989b9eb8e (diff) | |
| download | php-git-3322581c04d2852d8f6ac2d5db82a0eb4a063a40.tar.gz | |
- Only include ftok() if it is available
Diffstat (limited to 'ext/standard/php_ftok.h')
| -rw-r--r-- | ext/standard/php_ftok.h | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/standard/php_ftok.h b/ext/standard/php_ftok.h index 6f8029cde7..978520a30a 100644 --- a/ext/standard/php_ftok.h +++ b/ext/standard/php_ftok.h @@ -21,6 +21,8 @@  #ifndef PHP_FTOK_H  #define PHP_FTOK_H +#if HAVE_FTOK  PHP_FUNCTION(ftok); +#endif  #endif /* PHP_FTOK_H */  | 
