diff options
author | Ross Lagerwall <rosslagerwall@gmail.com> | 2012-03-07 18:06:33 (GMT) |
---|---|---|
committer | Ross Lagerwall <rosslagerwall@gmail.com> | 2012-03-07 18:06:33 (GMT) |
commit | 7f4fdb266a10c3d7959130fad93e89ed849cd6ed (patch) | |
tree | 661b13c7c69d4bc11f8077416c0f60ea2e3ce33b /Modules/_posixsubprocess.c | |
parent | 88748d7bfe23e2ae3d6140b547cacc7a2e18ad00 (diff) | |
download | cpython-7f4fdb266a10c3d7959130fad93e89ed849cd6ed.zip cpython-7f4fdb266a10c3d7959130fad93e89ed849cd6ed.tar.gz cpython-7f4fdb266a10c3d7959130fad93e89ed849cd6ed.tar.bz2 |
Use ANSI C prototype instead of K&R style.
Diffstat (limited to 'Modules/_posixsubprocess.c')
-rw-r--r-- | Modules/_posixsubprocess.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_posixsubprocess.c b/Modules/_posixsubprocess.c index c8f2500..babf039 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; |