summaryrefslogtreecommitdiff
path: root/libguile/vm.h
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2011-02-13 14:45:47 +0100
committerLudovic Courtès <ludo@gnu.org>2011-02-13 14:45:47 +0100
commitb339459e9443a319ce4289c2936783ca3abb7ef1 (patch)
tree8329e7a199a4e53afa196f96957c4963f62378e6 /libguile/vm.h
parentdc20f5a80943d0f7661848c4d1f6141897f6111b (diff)
downloadguile-b339459e9443a319ce4289c2936783ca3abb7ef1.tar.gz
Fix prototype of `scm_the_vm'.
* libguile/vm.h (scm_the_vm): Use `(void)' instead of `()'.
Diffstat (limited to 'libguile/vm.h')
-rw-r--r--libguile/vm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/vm.h b/libguile/vm.h
index bb7a7df8b..d354a53c0 100644
--- a/libguile/vm.h
+++ b/libguile/vm.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2001, 2009, 2010 Free Software Foundation, Inc.
+/* Copyright (C) 2001, 2009, 2010, 2011 Free Software Foundation, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
@@ -59,7 +59,7 @@ SCM_API SCM scm_the_vm_fluid;
#define SCM_VM_DATA(vm) ((struct scm_vm *) SCM_CELL_WORD_1 (vm))
#define SCM_VALIDATE_VM(pos,x) SCM_MAKE_VALIDATE (pos, x, VM_P)
-SCM_API SCM scm_the_vm ();
+SCM_API SCM scm_the_vm (void);
SCM_API SCM scm_make_vm (void);
SCM_API SCM scm_the_vm (void);