Tweak the oshmctl() compile fix: convert the K&R definition to ANSI.

This commit is contained in:
John Baldwin 2009-06-25 13:36:57 +00:00
parent 6c001dbfbf
commit ca99828420
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=194959

View File

@ -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;