diff options
author | Ludovic Courtès <ludo@gnu.org> | 2011-02-13 14:45:47 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2011-02-13 14:45:47 +0100 |
commit | b339459e9443a319ce4289c2936783ca3abb7ef1 (patch) | |
tree | 8329e7a199a4e53afa196f96957c4963f62378e6 | |
parent | dc20f5a80943d0f7661848c4d1f6141897f6111b (diff) | |
download | guile-b339459e9443a319ce4289c2936783ca3abb7ef1.tar.gz |
Fix prototype of `scm_the_vm'.
* libguile/vm.h (scm_the_vm): Use `(void)' instead of `()'.
-rw-r--r-- | libguile/vm.h | 4 |
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); |