summaryrefslogtreecommitdiff
path: root/payloads/libpayload/include/curses.h
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2008-04-11 18:01:50 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2008-04-11 18:01:50 +0000
commitfad8c2bd7ca3605fdae3548b8a932aa309871931 (patch)
tree26cbef49876963512753dd271f9fafcff77baf26 /payloads/libpayload/include/curses.h
parent54315533cc8f162d5251458c6b9fa9f38c3f47f0 (diff)
Various small consistency fixes (trivial):
- Use _FOO_H include guard format everywhere. - Add missing speaker.c prototypes to libpayload.h. - Consistently use short form u8/u16/u32 instead of uint8_t et. al. - kcofig: Use 'depends on' instead of 'depends', which seems deprecated. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3234 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'payloads/libpayload/include/curses.h')
-rw-r--r--payloads/libpayload/include/curses.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/payloads/libpayload/include/curses.h b/payloads/libpayload/include/curses.h
index dc64ad36af..993bb3c962 100644
--- a/payloads/libpayload/include/curses.h
+++ b/payloads/libpayload/include/curses.h
@@ -34,8 +34,8 @@
/* $Id: curses.h.in,v 1.167 2006/11/26 01:14:54 tom Exp $ */
-#ifndef __NCURSES_H
-#define __NCURSES_H
+#ifndef _CURSES_H
+#define _CURSES_H
#define CURSES 1
#define CURSES_H 1
@@ -1673,4 +1673,4 @@ extern NCURSES_EXPORT(const char *) _nc_visbuf (const char *);
void curses_enable_vga(int);
void curses_enable_serial(int);
-#endif /* __NCURSES_H */
+#endif /* _CURSES_H */