Author: kib
Date: Tue Feb 14 03:32:37 2017
New Revision: 313715
URL: https://svnweb.freebsd.org/changeset/base/313715

Log:
  Order alphabetically.
  
  Noted by:     alc
  MFC after:    3 days

Modified:
  head/sys/sys/syscallsubr.h

Modified: head/sys/sys/syscallsubr.h
==============================================================================
--- head/sys/sys/syscallsubr.h  Tue Feb 14 01:20:03 2017        (r313714)
+++ head/sys/sys/syscallsubr.h  Tue Feb 14 03:32:37 2017        (r313715)
@@ -162,8 +162,8 @@ int kern_mmap(struct thread *td, uintptr
            int flags, int fd, off_t pos);
 int    kern_mprotect(struct thread *td, uintptr_t addr, size_t size, int prot);
 int    kern_msgctl(struct thread *, int, int, struct msqid_ds *);
-int    kern_msgsnd(struct thread *, int, const void *, size_t, int, long);
 int    kern_msgrcv(struct thread *, int, void *, size_t, long, int, long *);
+int    kern_msgsnd(struct thread *, int, const void *, size_t, int, long);
 int    kern_msync(struct thread *td, uintptr_t addr, size_t size, int flags);
 int    kern_munlock(struct thread *td, uintptr_t addr, size_t size);
 int    kern_munmap(struct thread *td, uintptr_t addr, size_t size);
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to