diff options
author | doko@ubuntu.com <doko@ubuntu.com> | 2016-05-17 23:06:01 (GMT) |
---|---|---|
committer | doko@ubuntu.com <doko@ubuntu.com> | 2016-05-17 23:06:01 (GMT) |
commit | bc7315068f188312e5c624ca57a3b010c7503eff (patch) | |
tree | 48b0e7e9b0c6c84785e5c15a6e24c0e74f8544fa /Modules/faulthandler.c | |
parent | 307676face1151e8429c49cb0f7343576eb342a0 (diff) | |
download | cpython-bc7315068f188312e5c624ca57a3b010c7503eff.zip cpython-bc7315068f188312e5c624ca57a3b010c7503eff.tar.gz cpython-bc7315068f188312e5c624ca57a3b010c7503eff.tar.bz2 |
- make some internal symbols static
Diffstat (limited to 'Modules/faulthandler.c')
-rw-r--r-- | Modules/faulthandler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/faulthandler.c b/Modules/faulthandler.c index 570c875..d6322d0 100644 --- a/Modules/faulthandler.c +++ b/Modules/faulthandler.c @@ -414,7 +414,7 @@ faulthandler_exc_handler(struct _EXCEPTION_POINTERS *exc_info) /* Install the handler for fatal signals, faulthandler_fatal_error(). */ -int +static int faulthandler_enable(void) { size_t i; |