diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-01-06 02:42:46 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-01-06 02:42:46 (GMT) |
commit | e86e7a5b62250ab3a17c020bdeb0213a971f2585 (patch) | |
tree | 033eee54d898823168fcbfcacc81b3fead86e899 /Python | |
parent | 216b78bdaac9e538ee278b082c9fe0aeecc5f225 (diff) | |
download | cpython-e86e7a5b62250ab3a17c020bdeb0213a971f2585.zip cpython-e86e7a5b62250ab3a17c020bdeb0213a971f2585.tar.gz cpython-e86e7a5b62250ab3a17c020bdeb0213a971f2585.tar.bz2 |
svnversion_init(): Use standard layout for function defn.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/sysmodule.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 9a135ed..5bbe950 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -943,7 +943,8 @@ static char branch[50]; static char shortbranch[50]; static const char *svn_revision; -static void svnversion_init(void) +static void +svnversion_init(void) { const char *python, *br_start, *br_end, *br_end2, *svnversion; int len, istag; |