From 59a38c2e5e60ebcbdb16921ebe3db82cb31d8faa Mon Sep 17 00:00:00 2001 From: jhb Date: Thu, 25 Jun 2009 13:36:57 +0000 Subject: Tweak the oshmctl() compile fix: convert the K&R definition to ANSI. --- sys/kern/sysv_shm.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/sys/kern/sysv_shm.c b/sys/kern/sysv_shm.c index 2997145..56a3d4f 100644 --- a/sys/kern/sysv_shm.c +++ b/sys/kern/sysv_shm.c @@ -116,10 +116,6 @@ struct shmmap_state { int shmid; }; -#if defined(__i386__) && (defined(COMPAT_FREEBSD4) || defined(COMPAT_43)) -struct oshmctl_args; -static int oshmctl(struct thread *td, struct oshmctl_args *uap); -#endif static void shm_deallocate_segment(struct shmid_kernel *); static int shm_find_segment_by_key(key_t); static struct shmid_kernel *shm_find_segment_by_shmid(int); @@ -901,9 +897,7 @@ struct oshmctl_args { }; static int -oshmctl(td, uap) - struct thread *td; - struct oshmctl_args *uap; +oshmctl(struct thread *td, struct oshmctl_args *uap) { #ifdef COMPAT_43 int error = 0; -- cgit v1.1