diff options
author | Guido van Rossum <guido@python.org> | 1996-08-08 18:44:36 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-08-08 18:44:36 (GMT) |
commit | 1d60614d429eba40cdb3ea5ac0f73f55e15f65fb (patch) | |
tree | e7c0decf29067aa992d93b8a4e87b4181016adb8 /Include/mymath.h | |
parent | 6f90e9862e2925e4a770677d753c9e0980a8cc13 (diff) | |
download | cpython-1d60614d429eba40cdb3ea5ac0f73f55e15f65fb.zip cpython-1d60614d429eba40cdb3ea5ac0f73f55e15f65fb.tar.gz cpython-1d60614d429eba40cdb3ea5ac0f73f55e15f65fb.tar.bz2 |
Correctly use Py_PROTO, not obsolete PROTO.
Diffstat (limited to 'Include/mymath.h')
-rw-r--r-- | Include/mymath.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/mymath.h b/Include/mymath.h index 13d32a6..c6c6e6b 100644 --- a/Include/mymath.h +++ b/Include/mymath.h @@ -18,5 +18,5 @@ #if defined(HAVE_HYPOT) /* Defined in <math.h> */ #else -extern double hypot PROTO((double, double)); /* defined in mathmodule.c */ +extern double hypot Py_PROTO((double, double)); /* defined in mathmodule.c */ #endif |