diff options
author | jake <jake@FreeBSD.org> | 2002-05-20 16:12:35 +0000 |
---|---|---|
committer | jake <jake@FreeBSD.org> | 2002-05-20 16:12:35 +0000 |
commit | 8505e0103326e229cfab395ad3119a58861138cd (patch) | |
tree | afa81cd259195a13404d4a4af0f4f26192c059f1 | |
parent | 77c392a7a85ea00890d716f7d001c15a6525a389 (diff) | |
download | FreeBSD-src-8505e0103326e229cfab395ad3119a58861138cd.zip FreeBSD-src-8505e0103326e229cfab395ad3119a58861138cd.tar.gz |
Forward declare struct trapframe.
-rw-r--r-- | sys/sparc64/include/intr_machdep.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/sparc64/include/intr_machdep.h b/sys/sparc64/include/intr_machdep.h index d3a0949..c8e36ca 100644 --- a/sys/sparc64/include/intr_machdep.h +++ b/sys/sparc64/include/intr_machdep.h @@ -47,6 +47,8 @@ #define PIL_FAST 13 /* fast interrupts */ #define PIL_TICK 14 +struct trapframe; + typedef void ih_func_t(struct trapframe *); typedef void iv_func_t(void *); |