Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Oct 2011 17:44:51 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r226850 - head/sys/sys
Message-ID:  <201110271744.p9RHipAu017836@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhb
Date: Thu Oct 27 17:44:51 2011
New Revision: 226850
URL: http://svn.freebsd.org/changeset/base/226850

Log:
  Sort function prototypes.

Modified:
  head/sys/sys/fcntl.h

Modified: head/sys/sys/fcntl.h
==============================================================================
--- head/sys/sys/fcntl.h	Thu Oct 27 17:43:36 2011	(r226849)
+++ head/sys/sys/fcntl.h	Thu Oct 27 17:44:51 2011	(r226850)
@@ -286,15 +286,15 @@ __BEGIN_DECLS
 int	open(const char *, int, ...);
 int	creat(const char *, mode_t);
 int	fcntl(int, int, ...);
+#if __BSD_VISIBLE
+int	flock(int, int);
+#endif
 #if __BSD_VISIBLE || __POSIX_VISIBLE >= 200809
 int	openat(int, const char *, int, ...);
 #endif
 #if __BSD_VISIBLE || __POSIX_VISIBLE >= 200112
 int	posix_fallocate(int, off_t, off_t);
 #endif
-#if __BSD_VISIBLE
-int	flock(int, int);
-#endif
 __END_DECLS
 #endif
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201110271744.p9RHipAu017836>