diff options
author | Thomas Wouters <thomas@python.org> | 2000-07-21 06:00:07 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-07-21 06:00:07 (GMT) |
commit | f3f33dcf03eaed3c4e720178f9d69205a66d6a91 (patch) | |
tree | 3365212ce8b6f11765dfd8cbc774c0c8b2f9260e /Modules/signalmodule.c | |
parent | ff4df6d6fbeac136053ba4f9b7ac567fbf39e6be (diff) | |
download | cpython-f3f33dcf03eaed3c4e720178f9d69205a66d6a91.zip cpython-f3f33dcf03eaed3c4e720178f9d69205a66d6a91.tar.gz cpython-f3f33dcf03eaed3c4e720178f9d69205a66d6a91.tar.bz2 |
Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',
and a couple of functions that were missed in the previous batches. Not
terribly tested, but very carefully scrutinized, three times.
All these were found by the little findkrc.py that I posted to python-dev,
which means there might be more lurking. Cases such as this:
long
func(a, b)
long a;
long b; /* flagword */
{
and other cases where the last ; in the argument list isn't followed by a
newline and an opening curly bracket. Regexps to catch all are welcome, of
course ;)
Diffstat (limited to 'Modules/signalmodule.c')
-rw-r--r-- | Modules/signalmodule.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c index 47151eb..757fe78 100644 --- a/Modules/signalmodule.c +++ b/Modules/signalmodule.c @@ -312,7 +312,7 @@ A signal handler function is called with two arguments:\n\ the first is the signal number, the second is the interrupted stack frame."; DL_EXPORT(void) -initsignal() +initsignal(void) { PyObject *m, *d, *x; int i; @@ -553,7 +553,7 @@ initsignal() } static void -finisignal() +finisignal(void) { int i; PyObject *func; @@ -583,7 +583,7 @@ finisignal() /* Declared in pyerrors.h */ int -PyErr_CheckSignals() +PyErr_CheckSignals(void) { int i; PyObject *f; @@ -623,7 +623,7 @@ PyErr_CheckSignals() * Declared in pyerrors.h */ void -PyErr_SetInterrupt() +PyErr_SetInterrupt(void) { is_tripped++; Handlers[SIGINT].tripped = 1; @@ -631,20 +631,20 @@ PyErr_SetInterrupt() } void -PyOS_InitInterrupts() +PyOS_InitInterrupts(void) { initsignal(); _PyImport_FixupExtension("signal", "signal"); } void -PyOS_FiniInterrupts() +PyOS_FiniInterrupts(void) { finisignal(); } int -PyOS_InterruptOccurred() +PyOS_InterruptOccurred(void) { if (Handlers[SIGINT].tripped) { #ifdef WITH_THREAD @@ -658,7 +658,7 @@ PyOS_InterruptOccurred() } void -PyOS_AfterFork() +PyOS_AfterFork(void) { #ifdef WITH_THREAD main_thread = PyThread_get_thread_ident(); |