diff options
author | Etienne Brateau <etienne.brateau@gmail.com> | 2022-01-20 18:00:04 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-01-21 00:02:45 +0100 |
commit | e9a5755233568e3382a13221b23103d500cd0182 (patch) | |
tree | 7276da75f7e888f4d5aadb1a27dbac033d231a61 /i386/i386at/mem.c | |
parent | 17b780b4be553833d41881a8fbe499d0c9cfbc7e (diff) | |
download | gnumach-e9a5755233568e3382a13221b23103d500cd0182.tar.gz gnumach-e9a5755233568e3382a13221b23103d500cd0182.tar.bz2 gnumach-e9a5755233568e3382a13221b23103d500cd0182.zip |
Convert from K&R to ANSI
* hardclock.c: convert to ANSI
* com.c: ditto
* lpr.c: ditto
* mem.c: ditto
Message-Id: <20220120170004.21722-1-etienne.brateau@gmail.com>
Diffstat (limited to 'i386/i386at/mem.c')
-rw-r--r-- | i386/i386at/mem.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/i386/i386at/mem.c b/i386/i386at/mem.c index e42e995d..07acc169 100644 --- a/i386/i386at/mem.c +++ b/i386/i386at/mem.c @@ -31,10 +31,7 @@ /*ARGSUSED*/ vm_offset_t -memmmap(dev, off, prot) -dev_t dev; -vm_offset_t off; -vm_prot_t prot; +memmmap(dev_t dev, vm_offset_t off, vm_prot_t prot) { if (biosmem_addr_available(off)) return -1; |