Module Name:    src
Committed By:   riastradh
Date:           Sat Dec 18 16:41:37 UTC 2021

Modified Files:
        src/sys/arch/arm/include: cpu.h

Log Message:
arm: Forward-declare `struct proc' before using in prototype.


To generate a diff of this commit:
cvs rdiff -u -r1.121 -r1.122 src/sys/arch/arm/include/cpu.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/arch/arm/include/cpu.h
diff -u src/sys/arch/arm/include/cpu.h:1.121 src/sys/arch/arm/include/cpu.h:1.122
--- src/sys/arch/arm/include/cpu.h:1.121	Mon Nov  1 14:45:24 2021
+++ src/sys/arch/arm/include/cpu.h	Sat Dec 18 16:41:37 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: cpu.h,v 1.121 2021/11/01 14:45:24 skrll Exp $	*/
+/*	$NetBSD: cpu.h,v 1.122 2021/12/18 16:41:37 riastradh Exp $	*/
 
 /*
  * Copyright (c) 1994-1996 Mark Brinicombe.
@@ -67,6 +67,8 @@ void cpu_set_hatched(int);
 
 #endif
 
+struct proc;
+
 void	cpu_proc_fork(struct proc *, struct proc *);
 
 #endif	/* !_LOCORE */

Reply via email to