summaryrefslogtreecommitdiff
path: root/vm.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-09-04 07:18:24 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-09-04 07:18:24 +0000
commiteeb39e0152f94aaaf3b503f6719ce5b6c50a1481 (patch)
treec8a34d3ed2c0bf1625b20ed19d672c01e2632fd4 /vm.c
parent71f3943558343683d8f1099c6f0d4be130829e34 (diff)
vm.c: prototype
* vm.c (rb_next_class_sequence): use ANSI style definition and prorotype declaration, instead of old-K&R style. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42825 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm.c')
-rw-r--r--vm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm.c b/vm.c
index 41e9542bde..3c50daa2fe 100644
--- a/vm.c
+++ b/vm.c
@@ -88,7 +88,7 @@ static vm_state_version_t ruby_vm_sequence = 1;
#define PROCDEBUG 0
vm_state_version_t
-rb_next_class_sequence()
+rb_next_class_sequence(void)
{
return NEXT_CLASS_SEQUENCE();
}