Module Name: src
Committed By: riastradh
Date: Tue Sep 13 08:30:57 UTC 2022
Modified Files:
src/sys/sys: device_if.h
Log Message:
sys/device_if.h: Need sys/stdint.h for uint64_t.
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/sys/device_if.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/device_if.h
diff -u src/sys/sys/device_if.h:1.6 src/sys/sys/device_if.h:1.7
--- src/sys/sys/device_if.h:1.6 Sun Mar 4 18:07:34 2018
+++ src/sys/sys/device_if.h Tue Sep 13 08:30:57 2022
@@ -1,8 +1,10 @@
-/* $NetBSD: device_if.h,v 1.6 2018/03/04 18:07:34 kre Exp $ */
+/* $NetBSD: device_if.h,v 1.7 2022/09/13 08:30:57 riastradh Exp $ */
#ifndef _SYS_DEVICE_IF_H
#define _SYS_DEVICE_IF_H
+#include <sys/stdint.h>
+
struct device;
typedef struct device *device_t;