diff options
author | Damien Zammit <damien@zamaudio.com> | 2022-02-27 09:10:26 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-03-01 01:43:38 +0100 |
commit | 05ff8d177f87007df0579952d6cce421b494198b (patch) | |
tree | 12ad786c56bb134a0338742c2926a3a1bb0fa186 /libmachdev | |
parent | 43c8d85d9b271f88b71846e2e63f4a1ed53e49d1 (diff) | |
download | hurd-05ff8d177f87007df0579952d6cce421b494198b.tar.gz hurd-05ff8d177f87007df0579952d6cce421b494198b.tar.bz2 hurd-05ff8d177f87007df0579952d6cce421b494198b.zip |
libmachdev: No-op fix styling of functions
Message-Id: <20220227091013.33112-2-damien@zamaudio.com>
Diffstat (limited to 'libmachdev')
-rw-r--r-- | libmachdev/ds_routines.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/libmachdev/ds_routines.c b/libmachdev/ds_routines.c index 139551f6..e89ceee0 100644 --- a/libmachdev/ds_routines.c +++ b/libmachdev/ds_routines.c @@ -302,7 +302,8 @@ machdev_create_device_port (size_t size, void *result) size, result); } -void machdev_device_init() +void +machdev_device_init() { int i; @@ -316,7 +317,8 @@ void machdev_device_init() } } -void machdev_device_sync() +void +machdev_device_sync() { int i; for (i = 0; i < num_emul; i++) @@ -340,13 +342,15 @@ demuxer (mach_msg_header_t *inp, mach_msg_header_t *outp) return FALSE; } -void machdev_register (struct machdev_device_emulation_ops *ops) +void +machdev_register (struct machdev_device_emulation_ops *ops) { assert(num_emul < MAX_NUM_EMULATION-1); emulation_list[num_emul++] = ops; } -void * machdev_server(void *arg) +void * +machdev_server(void *arg) { /* Launch. */ do |