From 07b2eeb01da8bfa2311eea2a61e056ff4cb8c6e6 Mon Sep 17 00:00:00 2001 From: kib Date: Fri, 16 Nov 2012 06:25:20 +0000 Subject: [PATCH] Alphabetically reorder the forward-declarations of the structures. Add the declaration for enum idtype, to be used later. Reported and reviewed by: bde MFC after: 28 days --- sys/sys/syscallsubr.h | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/sys/sys/syscallsubr.h b/sys/sys/syscallsubr.h index 48216a517068..1f668ae53f3e 100644 --- a/sys/sys/syscallsubr.h +++ b/sys/sys/syscallsubr.h @@ -35,25 +35,26 @@ #include struct file; +enum idtype; struct itimerval; struct image_args; struct jail; -struct mbuf; -struct msghdr; -struct msqid_ds; -struct rlimit; -struct rusage; -struct __wrusage; -union semun; -struct sockaddr; -struct stat; struct kevent; struct kevent_copyops; struct kld_file_stat; struct ksiginfo; -struct sendfile_args; -struct thr_param; +struct mbuf; +struct msghdr; +struct msqid_ds; struct ogetdirentries_args; +struct rlimit; +struct rusage; +union semun; +struct sendfile_args; +struct sockaddr; +struct stat; +struct thr_param; +struct __wrusage; int kern___getcwd(struct thread *td, u_char *buf, enum uio_seg bufseg, u_int buflen);