Module Name: src
Committed By: riastradh
Date: Sat Apr 22 13:52:37 UTC 2023
Modified Files:
src/sys/sys: file.h
Log Message:
sys/file.h: Sort forward declarations.
No functional change intended.
To generate a diff of this commit:
cvs rdiff -u -r1.88 -r1.89 src/sys/sys/file.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/sys/file.h
diff -u src/sys/sys/file.h:1.88 src/sys/sys/file.h:1.89
--- src/sys/sys/file.h:1.88 Sun Sep 19 15:51:27 2021
+++ src/sys/sys/file.h Sat Apr 22 13:52:37 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: file.h,v 1.88 2021/09/19 15:51:27 thorpej Exp $ */
+/* $NetBSD: file.h,v 1.89 2023/04/22 13:52:37 riastradh Exp $ */
/*-
* Copyright (c) 2009 The NetBSD Foundation, Inc.
@@ -71,12 +71,12 @@
#include <sys/mutex.h>
#include <sys/condvar.h>
-struct proc;
-struct lwp;
-struct uio;
struct iovec;
-struct stat;
struct knote;
+struct lwp;
+struct proc;
+struct stat;
+struct uio;
struct uvm_object;
struct fileops {