From: scipio Date: Thu, 10 Apr 2008 20:01:37 +0000 (+0000) Subject: #define guard. X-Git-Tag: release_tinyos_2_1_0_0~467 X-Git-Url: https://oss.titaniummirror.com/gitweb/?p=tinyos-2.x.git;a=commitdiff_plain;h=fa4544217a24a4746e5c89c5665c5e2900655741 #define guard. --- 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