From: Ross Lagerwall Date: Wed, 7 Mar 2012 18:06:33 +0000 (+0200) Subject: Use ANSI C prototype instead of K&R style. X-Git-Tag: v3.3.0a2~271 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7f4fdb266a10c3d7959130fad93e89ed849cd6ed;p=python Use ANSI C prototype instead of K&R style. --- diff --git a/Modules/_posixsubprocess.c b/Modules/_posixsubprocess.c index c8f2500a8a..babf039611 100644 --- a/Modules/_posixsubprocess.c +++ b/Modules/_posixsubprocess.c @@ -80,7 +80,7 @@ _pos_int_from_ascii(char *name) * that properly supports /dev/fd. */ static int -_is_fdescfs_mounted_on_dev_fd() +_is_fdescfs_mounted_on_dev_fd(void) { struct stat dev_stat; struct stat dev_fd_stat;