Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/cesfic/include protect against multiple inclusion.



details:   https://anonhg.NetBSD.org/src/rev/7395f3e84a43
branches:  trunk
changeset: 820781:7395f3e84a43
user:      christos <christos%NetBSD.org@localhost>
date:      Sat Jan 14 22:24:43 2017 +0000

description:
protect against multiple inclusion.

diffstat:

 sys/arch/cesfic/include/param.h |  6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diffs (24 lines):

diff -r 844c0f44b477 -r 7395f3e84a43 sys/arch/cesfic/include/param.h
--- a/sys/arch/cesfic/include/param.h   Sat Jan 14 22:19:29 2017 +0000
+++ b/sys/arch/cesfic/include/param.h   Sat Jan 14 22:24:43 2017 +0000
@@ -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_ */



Home | Main Index | Thread Index | Old Index