diff options
author | Nobuyoshi Nakada <[email protected]> | 2021-07-21 12:40:26 +0900 |
---|---|---|
committer | Koichi Sasada <[email protected]> | 2021-12-15 15:04:34 +0900 |
commit | db3ab440db2444b0b3ad388f68c592ec68cfcca7 (patch) | |
tree | 3c425a33b9e136c20eacd6166e932a16c78551a8 /hash.c | |
parent | b43338ccc47d6e64ae6f52298a1f222cd5fd0887 (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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5369,7 +5369,7 @@ env_aset(VALUE nm, VALUE val) } static int -env_entry_count() +env_entry_count(void) { int i; char **env; |