diff options
author | Guido van Rossum <guido@python.org> | 1996-08-19 22:12:39 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-08-19 22:12:39 +0000 |
commit | 7cf1fcf347853a9efe9e0c21191ad66a650f3da7 (patch) | |
tree | 39fe41efd2fd1a0a448b6a72210d0201fae5e1b2 /Python/fmod.c | |
parent | 1e6124902a74d5f8445875f64bb2921aad1f9e57 (diff) | |
download | cpython-git-7cf1fcf347853a9efe9e0c21191ad66a650f3da7.tar.gz |
Always include config.h
Diffstat (limited to 'Python/fmod.c')
-rw-r--r-- | Python/fmod.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/fmod.c b/Python/fmod.c index 777166bcb6..ffe97f5737 100644 --- a/Python/fmod.c +++ b/Python/fmod.c @@ -24,9 +24,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. /* Portable fmod(x, y) implementation for systems that don't have it */ -#ifdef HAVE_CONFIG_H #include "config.h" -#endif #include "mymath.h" #include <errno.h> |