# HG changeset patch # User meillo@marmaro.de # Date 1204450449 -3600 # Node ID c31b5bb6d4934859970202d20471e258b3dc38f6 # Parent 22305a6e128d342a93b81546b9341db7a00c80aa merged header files into only one (removed actions.h) diff -r 22305a6e128d -r c31b5bb6d493 Makefile --- a/Makefile Sun Mar 02 10:29:55 2008 +0100 +++ b/Makefile Sun Mar 02 10:34:09 2008 +0100 @@ -23,7 +23,7 @@ # files SRC=baum.c actions.c OBJ=$(SRC:.c=.o) -DEP = baum.h actions.h +DEP = baum.h diff -r 22305a6e128d -r c31b5bb6d493 actions.c --- a/actions.c Sun Mar 02 10:29:55 2008 +0100 +++ b/actions.c Sun Mar 02 10:34:09 2008 +0100 @@ -2,7 +2,6 @@ #include #include #include "baum.h" -#include "actions.h" unsigned char action_print(struct Node* node); unsigned char action_sum(struct Node* node); diff -r 22305a6e128d -r c31b5bb6d493 actions.h --- a/actions.h Sun Mar 02 10:29:55 2008 +0100 +++ b/actions.h Sun Mar 02 10:34:09 2008 +0100 @@ -1,1 +0,0 @@ -unsigned char action(struct Node* node); diff -r 22305a6e128d -r c31b5bb6d493 baum.c --- a/baum.c Sun Mar 02 10:29:55 2008 +0100 +++ b/baum.c Sun Mar 02 10:34:09 2008 +0100 @@ -12,7 +12,6 @@ #include #include "baum.h" -#include "actions.h" #define VERSION "0.3" diff -r 22305a6e128d -r c31b5bb6d493 baum.h --- a/baum.h Sun Mar 02 10:29:55 2008 +0100 +++ b/baum.h Sun Mar 02 10:34:09 2008 +0100 @@ -4,6 +4,7 @@ struct Node* insertLast(struct Node* node, struct Node* insert); struct Node* copyTree(struct Node* node); +unsigned char action(struct Node* node); /* in actions.c */ /* structs */ struct Node {