summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/main.c b/main.c
index 8f451e4..5a66e1a 100644
--- a/main.c
+++ b/main.c
@@ -4,9 +4,10 @@
*
*/
+#include <stdio.h>
#include "main.h"
#include "hash.h"
-#include "interface.h"
+#include "parse.h"
#include "polynom.h"
#include "pile.h"
#ifdef HAVE_CONFIG_H
@@ -15,10 +16,11 @@
#define _(x) x
#endif
+_TableauVariable variables;
+char mute;
+
int main(void)
{
- _TableauVariable variables;
- char mute;
Initialise(&variables);
mute = 'x'; /* nom de la variable utilisee pour la saisie des polynomes, a recuperer en argv eventuellt */