From 4d8ad7d87072bc1631d0b949930f4869e56b7b99 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Tue, 22 Apr 2014 11:44:54 +0200 Subject: Fix include guards Macros starting with _ are reserved (see http://www.gnu.org/software/libc/manual/html_node/Reserved-Names.html). Fixes #440. --- src/ui.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/ui.h') diff --git a/src/ui.h b/src/ui.h index 6b5d891..96ad32f 100644 --- a/src/ui.h +++ b/src/ui.h @@ -21,8 +21,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#ifndef _UI_H -#define _UI_H +#ifndef SRC_UI_H_46P20TS0 +#define SRC_UI_H_46P20TS0 #include @@ -55,4 +55,4 @@ int BarUiPianoCall (BarApp_t * const, PianoRequestType_t, void *, PianoReturn_t *, WaitressReturn_t *); void BarUiHistoryPrepend (BarApp_t *app, PianoSong_t *song); -#endif /* _UI_H */ +#endif /* SRC_UI_H_46P20TS0 */ -- cgit v1.2.3