summaryrefslogtreecommitdiff
path: root/hash.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-07-21 12:40:26 +0900
committerKoichi Sasada <ko1@atdot.net>2021-12-15 15:04:34 +0900
commitdb3ab440db2444b0b3ad388f68c592ec68cfcca7 (patch)
tree3c425a33b9e136c20eacd6166e932a16c78551a8 /hash.c
parentb43338ccc47d6e64ae6f52298a1f222cd5fd0887 (diff)
Use prototype definition instead of old K&R style
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/5263
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hash.c b/hash.c
index f8c5249837..32a258e733 100644
--- a/hash.c
+++ b/hash.c
@@ -5369,7 +5369,7 @@ env_aset(VALUE nm, VALUE val)
}
static int
-env_entry_count()
+env_entry_count(void)
{
int i;
char **env;