Constants are not used in the header.

This commit is contained in:
Murilo Pereira 2011-02-06 04:06:54 -02:00
parent 5adba921f9
commit 56ab3aedb1
2 changed files with 2 additions and 2 deletions

View File

@ -4,6 +4,7 @@
#include <string.h> #include <string.h>
#include <errno.h> #include <errno.h>
#include <time.h> #include <time.h>
#include "stack.h"
#include "display.h" #include "display.h"
#include "util.h" #include "util.h"
#include "game.h" #include "game.h"
@ -225,7 +226,7 @@ void initialize_game() {
void end_game(struct deck *deck) { void end_game(struct deck *deck) {
print_deck(deck); // debugging purposes print_deck(deck); // debugging purposes
delete_deck(deck); /*delete_deck(deck); this is segfaulting */
return; return;
} }

View File

@ -1,7 +1,6 @@
#ifndef GAME_H #ifndef GAME_H
#define GAME_H #define GAME_H
#include "stack.h"
#include "deck.h" #include "deck.h"
#include "cursor.h" #include "cursor.h"