diff options
author | Thomas Wouters <thomas@python.org> | 2000-07-24 14:39:50 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-07-24 14:39:50 (GMT) |
commit | 8ec68fded2a99b2c2e2e637e42839741fedbf0a1 (patch) | |
tree | c0f824694a5d61bf10234fd7afee0388389322e4 | |
parent | ab48e905b55711fff4f9bd56face4602e6e5f20f (diff) | |
download | cpython-8ec68fded2a99b2c2e2e637e42839741fedbf0a1.zip cpython-8ec68fded2a99b2c2e2e637e42839741fedbf0a1.tar.gz cpython-8ec68fded2a99b2c2e2e637e42839741fedbf0a1.tar.bz2 |
Prototype yet another forward declaration.
-rw-r--r-- | Python/thread.c | 2 |
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) { |