From f50e72646456649e166c0c384943782c5e295eb9 Mon Sep 17 00:00:00 2001 From: marius Date: Sun, 29 Apr 2012 15:54:40 +0000 Subject: Add multiple inclusion protection. PR: 165025 Submitted by: Gavin Mu MFC after: 1 week --- sys/boot/common/bootstrap.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sys/boot/common/bootstrap.h b/sys/boot/common/bootstrap.h index d8b4551..7f011c7 100644 --- a/sys/boot/common/bootstrap.h +++ b/sys/boot/common/bootstrap.h @@ -26,6 +26,9 @@ * $FreeBSD$ */ +#ifndef _BOOTSTRAP_H_ +#define _BOOTSTRAP_H_ + #include #include #include @@ -323,3 +326,5 @@ void delay(int delay); void dev_cleanup(void); time_t time(time_t *tloc); + +#endif /* !_BOOTSTRAP_H_ */ -- cgit v1.1