From 56ab3aedb14299e3364e818a36028a4adbc5460c Mon Sep 17 00:00:00 2001 From: Murilo Pereira Date: Sun, 6 Feb 2011 04:06:54 -0200 Subject: [PATCH] Constants are not used in the header. --- lib/game.c | 3 ++- lib/game.h | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/game.c b/lib/game.c index ed106aa..db34c31 100644 --- a/lib/game.c +++ b/lib/game.c @@ -4,6 +4,7 @@ #include #include #include +#include "stack.h" #include "display.h" #include "util.h" #include "game.h" @@ -225,7 +226,7 @@ void initialize_game() { void end_game(struct deck *deck) { print_deck(deck); // debugging purposes - delete_deck(deck); + /*delete_deck(deck); this is segfaulting */ return; } diff --git a/lib/game.h b/lib/game.h index 9acc549..06f7476 100644 --- a/lib/game.h +++ b/lib/game.h @@ -1,7 +1,6 @@ #ifndef GAME_H #define GAME_H -#include "stack.h" #include "deck.h" #include "cursor.h"