__P() is used for compatibility with old K&R C compilers. With ANSI C this macro has no effect. This fixes a compilation error with musl libc because of undeclared __P. Ref: https://lists.samba.org/archive/samba-technical/2015-June/108042.html Signed-off-by: Romain Naour <romain.naour@xxxxxxxxx> --- login-utils/vipw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/login-utils/vipw.c b/login-utils/vipw.c index a3c932f..bb4a8ba 100644 --- a/login-utils/vipw.c +++ b/login-utils/vipw.c @@ -85,7 +85,7 @@ int program; char orig_file[FILENAMELEN]; /* original file /etc/passwd or /etc/group */ char *tmp_file; /* tmp file */ -void pw_error __P((char *, int, int)); +void pw_error (char *, int, int); static void copyfile(int from, int to) { -- 2.5.0 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html