Fixed style bugs in rev.1.12 (unsorting of prototypes by adding new ones

at the end).

Fixed some older style bugs (missing parameter names in all the kernel
prototypes except the ones added in rev.1.12).
This commit is contained in:
Bruce Evans 2003-12-27 10:30:43 +00:00
parent 18258f6d7a
commit 2d13f3377f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=123887

View File

@ -85,14 +85,15 @@ struct uio {
struct vm_object;
void uio_yield(void);
int uiomove(void *, int, struct uio *);
int uiomove_frombuf(void *buf, int buflen, struct uio *uio);
int uiomoveco(void *, int, struct uio *, struct vm_object *, int);
int copyinfrom(const void * __restrict src, void * __restrict dst,
size_t len, int seg);
int copyinstrfrom(const void * __restrict src, void * __restrict dst,
size_t len, size_t * __restrict copied, int seg);
void uio_yield(void);
int uiomove(void *cp, int n, struct uio *uio);
int uiomove_frombuf(void *buf, int buflen, struct uio *uio);
int uiomoveco(void *cp, int n, struct uio *uio, struct vm_object *obj,
int disposable);
#else /* !_KERNEL */