diff options
author | Fred Drake <fdrake@acm.org> | 2000-08-31 05:52:44 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-08-31 05:52:44 (GMT) |
commit | 399739f79f1d6cef6bc8a8ec63f9a81255464f15 (patch) | |
tree | ce63afa5707e6c1257181568413a526f369fcad4 /Python | |
parent | 17e6343d2d2c5d9279e30b7bd23215e5f6941a68 (diff) | |
download | cpython-399739f79f1d6cef6bc8a8ec63f9a81255464f15.zip cpython-399739f79f1d6cef6bc8a8ec63f9a81255464f15.tar.gz cpython-399739f79f1d6cef6bc8a8ec63f9a81255464f15.tar.bz2 |
PyOS_CheckStack(): Better ANSI'fy this while we're at it.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pythonrun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 48a033f..b00b18f 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -1205,7 +1205,7 @@ Py_FdIsInteractive(FILE *fp, char *filename) * Return non-zero when we run out of memory on the stack; zero otherwise. */ int -PyOS_CheckStack() +PyOS_CheckStack(void) { __try { /* _alloca throws a stack overflow exception if there's |