clean up function declarations to conform to PEP-7 style.

This commit is contained in:
Andrew MacIntyre 2006-06-04 12:59:59 +00:00
parent 6539d2d3c7
commit 63f0db682e
3 changed files with 44 additions and 22 deletions

View file

@ -244,7 +244,8 @@ PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag)
return 1;
}
void PyThread_release_lock(PyThread_type_lock aLock)
void
PyThread_release_lock(PyThread_type_lock aLock)
{
#if !defined(PYCC_GCC)
type_os2_lock lock = (type_os2_lock)aLock;