Userland needs <stddef.h> for offsetof(), not <lib/libkern/libkern.h> ...

(Arguably a chunk more of this file could be protected with _KERNEL.
That's a separate project.)
This commit is contained in:
lukem 2003-10-10 06:27:15 +00:00
parent e9ca735c42
commit b313b2641e
1 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: cpu.h,v 1.105 2003/10/09 13:46:43 yamt Exp $ */
/* $NetBSD: cpu.h,v 1.106 2003/10/10 06:27:15 lukem Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -54,7 +54,11 @@
#include <sys/lock.h> /* will also get LOCKDEBUG */
#include <sys/sched.h>
#ifdef _KERNEL
#include <lib/libkern/libkern.h> /* offsetof */
#else
#include <stddef.h> /* offsetof */
#endif
struct intrsource;