summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2000-07-24 14:39:50 (GMT)
committerThomas Wouters <thomas@python.org>2000-07-24 14:39:50 (GMT)
commit8ec68fded2a99b2c2e2e637e42839741fedbf0a1 (patch)
treec0f824694a5d61bf10234fd7afee0388389322e4
parentab48e905b55711fff4f9bd56face4602e6e5f20f (diff)
downloadcpython-8ec68fded2a99b2c2e2e637e42839741fedbf0a1.zip
cpython-8ec68fded2a99b2c2e2e637e42839741fedbf0a1.tar.gz
cpython-8ec68fded2a99b2c2e2e637e42839741fedbf0a1.tar.bz2
Prototype yet another forward declaration.
-rw-r--r--Python/thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/thread.c b/Python/thread.c
index c8b2809..0f4c392 100644
--- a/Python/thread.c
+++ b/Python/thread.c
@@ -85,7 +85,7 @@ static int thread_debug = 0;
static int initialized;
-static void PyThread__init_thread(); /* Forward */
+static void PyThread__init_thread(void); /* Forward */
void PyThread_init_thread(void)
{