From a15715c34309416e76ebd2007a51ff6c42f28817 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 17 Jun 2014 15:36:26 +0200 Subject: -Wstrict-prototypes ...no reason to not have it enabled for URE C include files and what little real C code is still left. (But note that Clang ignores that warning.) Change-Id: Ia6940f9f940a0c226e9b724331d65c9862ce32e6 --- soltools/mkdepend/pr.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'soltools/mkdepend/pr.c') diff --git a/soltools/mkdepend/pr.c b/soltools/mkdepend/pr.c index 6ebb01a05068..d02414d6f6b5 100644 --- a/soltools/mkdepend/pr.c +++ b/soltools/mkdepend/pr.c @@ -79,8 +79,7 @@ void add_include(struct filepointer *filep, struct inclist *file, struct inclist } } -void pr_dummy(ip) - register struct inclist *ip; +void pr_dummy(register struct inclist *ip) { fwrite(ip->i_file, strlen(ip->i_file), 1, stdout); fwrite(" :\n\n", 4, 1, stdout); -- cgit