summaryrefslogtreecommitdiff
path: root/firmware/drivers/led.h
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-05-13 12:29:34 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-05-13 12:29:34 +0000
commit2382044ffca161910eb9e4bddf01a4bb2bc7481f (patch)
treeb1e3f9e08b47e60ad3f1ea3658794eb4f78cc4d1 /firmware/drivers/led.h
parent0631a1dcce95d2cde96dd205f85b7d849215aaa5 (diff)
downloadrockbox-2382044ffca161910eb9e4bddf01a4bb2bc7481f.tar.gz
rockbox-2382044ffca161910eb9e4bddf01a4bb2bc7481f.zip
Changing to C99 'bool' type
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@561 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers/led.h')
-rw-r--r--firmware/drivers/led.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/led.h b/firmware/drivers/led.h
index aeaa1cc476..9b2552f738 100644
--- a/firmware/drivers/led.h
+++ b/firmware/drivers/led.h
@@ -20,7 +20,7 @@
20#ifndef __LED_H__ 20#ifndef __LED_H__
21#define __LED_H__ 21#define __LED_H__
22 22
23#include "types.h" 23#include <stdbool.h>
24 24
25extern void led( bool on ); 25extern void led( bool on );
26 26