Module Name: src Committed By: martin Date: Thu Apr 3 17:04:46 UTC 2014
Modified Files: src/sys/arch/ia64/ia64: cpu.c Log Message: Add missing include To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/sys/arch/ia64/ia64/cpu.c 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/ia64/ia64/cpu.c diff -u src/sys/arch/ia64/ia64/cpu.c:1.13 src/sys/arch/ia64/ia64/cpu.c:1.14 --- src/sys/arch/ia64/ia64/cpu.c:1.13 Mon Mar 24 20:06:32 2014 +++ src/sys/arch/ia64/ia64/cpu.c Thu Apr 3 17:04:46 2014 @@ -1,4 +1,4 @@ -/* $NetBSD: cpu.c,v 1.13 2014/03/24 20:06:32 christos Exp $ */ +/* $NetBSD: cpu.c,v 1.14 2014/04/03 17:04:46 martin Exp $ */ /* * Copyright (c) 2006 The NetBSD Foundation, Inc. @@ -30,9 +30,10 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.13 2014/03/24 20:06:32 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.14 2014/04/03 17:04:46 martin Exp $"); #include <sys/param.h> +#include <sys/cpu.h> #include <sys/proc.h> #include <sys/systm.h> #include <sys/device.h>