diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2003-06-05 21:45:23 +0000 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2003-06-05 21:45:23 +0000 |
commit | c2174566a00e30d0b192a2ac7062ed5c53901ff5 (patch) | |
tree | 42edcef437d899dd95f445bb69994f759aa9046f | |
parent | 62f4eeb7ca562bd912ef2cdd7383aa8ef39646a9 (diff) | |
download | mdk-c2174566a00e30d0b192a2ac7062ed5c53901ff5.tar.gz mdk-c2174566a00e30d0b192a2ac7062ed5c53901ff5.tar.bz2 |
use GNU code conventions
-rw-r--r-- | mixlib/xmix_vm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mixlib/xmix_vm.c b/mixlib/xmix_vm.c index 9eede01..72ccd73 100644 --- a/mixlib/xmix_vm.c +++ b/mixlib/xmix_vm.c @@ -25,9 +25,9 @@ /* auxiliar functions */ G_INLINE_FUNC mix_address_t -get_M_(const mix_vm_t *vm, const mix_ins_t *ins); +get_M_ (const mix_vm_t *vm, const mix_ins_t *ins); G_INLINE_FUNC mix_word_t -get_V_(const mix_vm_t *vm, const mix_ins_t *ins); +get_V_ (const mix_vm_t *vm, const mix_ins_t *ins); G_INLINE_FUNC mix_device_t * get_dev_ (mix_vm_t *vm, mix_fspec_t type); |