From 9b49304790a9ada10c4d0d13422ee350353cbeb0 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 23 May 2011 12:29:10 +0200 Subject: Close #12153: faulthandler, mark stack_overflow() as static --- Modules/faulthandler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/faulthandler.c b/Modules/faulthandler.c index 72dbe1e..83c47ce 100644 --- a/Modules/faulthandler.c +++ b/Modules/faulthandler.c @@ -854,7 +854,7 @@ faulthandler_fatal_error_py(PyObject *self, PyObject *args) } #if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION) -void* +static void* stack_overflow(void *min_sp, void *max_sp, size_t *depth) { /* allocate 4096 bytes on the stack at each call */ -- cgit v0.12