diff options
author | Sascha Schumann <sas@php.net> | 1999-12-04 19:19:57 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-12-04 19:19:57 +0000 |
commit | 5b983c944f66b55192c901ce3fa38fcce6ca21e3 (patch) | |
tree | 89c7d57484170f274eba416495d88e02be541e6f /ext/bcmath | |
parent | 83ce7c13d1a7f21b4bd7dd0b5ce4f4d6764d7e52 (diff) | |
download | php-git-5b983c944f66b55192c901ce3fa38fcce6ca21e3.tar.gz |
Clean up php3.*\.h files. The files itself are renamed, and references in all
.*\.[ch] files were changed. There is a slight chance that my script missed
a few changes, please correct them manually.
Diffstat (limited to 'ext/bcmath')
-rw-r--r-- | ext/bcmath/bcmath.c | 2 | ||||
-rw-r--r-- | ext/bcmath/php_bcmath.h (renamed from ext/bcmath/php3_bcmath.h) | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ext/bcmath/bcmath.c b/ext/bcmath/bcmath.c index d4a7032376..e39f602445 100644 --- a/ext/bcmath/bcmath.c +++ b/ext/bcmath/bcmath.c @@ -21,7 +21,7 @@ #if WITH_BCMATH #include "number.h" -#include "php3_bcmath.h" +#include "php_bcmath.h" function_entry bcmath_functions[] = { PHP_FE(bcadd, NULL) diff --git a/ext/bcmath/php3_bcmath.h b/ext/bcmath/php_bcmath.h index a6007e60d1..397ff03dd5 100644 --- a/ext/bcmath/php3_bcmath.h +++ b/ext/bcmath/php_bcmath.h @@ -30,8 +30,8 @@ /* $Id$ */ -#ifndef _PHP3_BCMATH_H -#define _PHP3_BCMATH_H +#ifndef _PHP_BCMATH_H +#define _PHP_BCMATH_H #if COMPILE_DL #undef WITH_BCMATH @@ -61,4 +61,4 @@ PHP_FUNCTION(bcscale); #endif -#endif /* _PHP3_BCMATH_H */ +#endif /* _PHP_BCMATH_H */ |