From 1a7f27004796a702c530d6c283b7afc3a43d3283 Mon Sep 17 00:00:00 2001 From: Marius Strobl Date: Sun, 29 Apr 2012 15:54:40 +0000 Subject: [PATCH] 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 d8b45514cfdc..7f011c736238 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_ */