diff options
author | Fred Drake <fdrake@acm.org> | 2000-08-31 05:52:44 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-08-31 05:52:44 +0000 |
commit | c4594e0286186d5367f734bd349742ac02bb17df (patch) | |
tree | f099679bb2628998846354844db5bf45dbca4ad7 /Python/pythonrun.c | |
parent | a7167cd7a3359966ee6489a6c1a5f66b31c92e8a (diff) | |
download | cpython-c4594e0286186d5367f734bd349742ac02bb17df.tar.gz |
PyOS_CheckStack(): Better ANSI'fy this while we're at it.
Diffstat (limited to 'Python/pythonrun.c')
-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 48a033fd04..b00b18f5c5 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 |