From fa4544217a24a4746e5c89c5665c5e2900655741 Mon Sep 17 00:00:00 2001 From: scipio Date: Thu, 10 Apr 2008 20:01:37 +0000 Subject: [PATCH] #define guard. --- tos/types/Leds.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tos/types/Leds.h b/tos/types/Leds.h index bb4c703e..fc1f355b 100644 --- a/tos/types/Leds.h +++ b/tos/types/Leds.h @@ -1,5 +1,4 @@ //$Id$ - /* "Copyright (c) 2005 The Regents of the University of California. * All rights reserved. * @@ -27,6 +26,9 @@ * @date March 21, 2005 */ +#ifndef LEDS_H +#define LEDS_H + enum { LEDS_LED0 = 1 << 0, LEDS_LED1 = 1 << 1, @@ -38,3 +40,4 @@ enum { LEDS_LED7 = 1 << 7 }; +#endif -- 2.39.2