summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-08-08 18:44:36 (GMT)
committerGuido van Rossum <guido@python.org>1996-08-08 18:44:36 (GMT)
commit1d60614d429eba40cdb3ea5ac0f73f55e15f65fb (patch)
treee7c0decf29067aa992d93b8a4e87b4181016adb8 /Include
parent6f90e9862e2925e4a770677d753c9e0980a8cc13 (diff)
downloadcpython-1d60614d429eba40cdb3ea5ac0f73f55e15f65fb.zip
cpython-1d60614d429eba40cdb3ea5ac0f73f55e15f65fb.tar.gz
cpython-1d60614d429eba40cdb3ea5ac0f73f55e15f65fb.tar.bz2
Correctly use Py_PROTO, not obsolete PROTO.
Diffstat (limited to 'Include')
-rw-r--r--Include/mymath.h2
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