Module Name: src Committed By: christos Date: Sat Jan 14 22:24:43 UTC 2017
Modified Files: src/sys/arch/cesfic/include: param.h Log Message: protect against multiple inclusion. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/sys/arch/cesfic/include/param.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/cesfic/include/param.h diff -u src/sys/arch/cesfic/include/param.h:1.12 src/sys/arch/cesfic/include/param.h:1.13 --- src/sys/arch/cesfic/include/param.h:1.12 Fri Feb 10 12:35:49 2012 +++ src/sys/arch/cesfic/include/param.h Sat Jan 14 17:24:43 2017 @@ -1,4 +1,4 @@ -/* $NetBSD: param.h,v 1.12 2012/02/10 17:35:49 para Exp $ */ +/* $NetBSD: param.h,v 1.13 2017/01/14 22:24:43 christos Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -37,7 +37,8 @@ * * @(#)param.h 8.1 (Berkeley) 6/10/93 */ - +#ifndef _MACHINE_PARAM_H_ +#define _MACHINE_PARAM_H_ /* * Machine dependent constants for CES FIC8234. */ @@ -83,3 +84,4 @@ void _delay(u_int); #endif /* _KERNEL && !_LOCORE */ +#endif /* _MACHINE_PARAM_H_ */