aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2015-05-30 14:26:23 +0200
committerArmin Rigo <arigo@tunes.org>2015-05-30 14:26:23 +0200
commitcf504e6a08d6ba09bf4cf684dfbf3d2482ff0584 (patch)
treed9ea4c0fa7a5f6f4e28ce125c32f8f858987995c /lib_pypy/_pwdgrp_build.py
parentimport cffi/1e7ca6f81db8 (diff)
downloadpypy-cf504e6a08d6ba09bf4cf684dfbf3d2482ff0584.tar.gz
pypy-cf504e6a08d6ba09bf4cf684dfbf3d2482ff0584.tar.bz2
pypy-cf504e6a08d6ba09bf4cf684dfbf3d2482ff0584.zip
Use the new syntax "typedef int... foo_t" where appropriate
Diffstat (limited to 'lib_pypy/_pwdgrp_build.py')
-rw-r--r--lib_pypy/_pwdgrp_build.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib_pypy/_pwdgrp_build.py b/lib_pypy/_pwdgrp_build.py
index db0cccacbf..ddd32f3956 100644
--- a/lib_pypy/_pwdgrp_build.py
+++ b/lib_pypy/_pwdgrp_build.py
@@ -11,8 +11,8 @@ ffi.set_source("_pwdgrp_cffi", """
ffi.cdef("""
-typedef int uid_t;
-typedef int gid_t;
+typedef int... uid_t;
+typedef int... gid_t;
struct passwd {
char *pw_name;