From ba0655ebdd31e5e6b9ae8ede328733067a68dcbc Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 4 Oct 2014 23:29:24 +0000 Subject: ext: protoize no-arguments functions git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47793 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/psych/psych_emitter.h | 2 +- ext/psych/psych_parser.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/psych') diff --git a/ext/psych/psych_emitter.h b/ext/psych/psych_emitter.h index 560451ef31..4c1482a78b 100644 --- a/ext/psych/psych_emitter.h +++ b/ext/psych/psych_emitter.h @@ -3,6 +3,6 @@ #include -void Init_psych_emitter(); +void Init_psych_emitter(void); #endif diff --git a/ext/psych/psych_parser.h b/ext/psych/psych_parser.h index 25e896f01d..beb3dd0709 100644 --- a/ext/psych/psych_parser.h +++ b/ext/psych/psych_parser.h @@ -1,6 +1,6 @@ #ifndef PSYCH_PARSER_H #define PSYCH_PARSER_H -void Init_psych_parser(); +void Init_psych_parser(void); #endif -- cgit v1.2.3