aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcrunchy <crunchy>2002-09-13 07:00:46 +0000
committercrunchy <crunchy>2002-09-13 07:00:46 +0000
commitb1d98f797dec067cb43b9e27f1245f4be796d351 (patch)
treeccfd3ef47091dad9860c27260afcfb6d7a639618
parent2c7a0370fd13e02590ba52408fbe39d9b93c77e6 (diff)
downloadmpiosh-b1d98f797dec067cb43b9e27f1245f4be796d351.tar.gz
mpiosh-b1d98f797dec067cb43b9e27f1245f4be796d351.tar.bz2
mpiosh-b1d98f797dec067cb43b9e27f1245f4be796d351.zip
bug fix
-rw-r--r--mpiosh/mpiosh.c3
-rw-r--r--mpiosh/mpiosh.h10
2 files changed, 2 insertions, 11 deletions
diff --git a/mpiosh/mpiosh.c b/mpiosh/mpiosh.c
index 5e24b87..3b725d0 100644
--- a/mpiosh/mpiosh.c
+++ b/mpiosh/mpiosh.c
@@ -2,7 +2,7 @@
/*
*
- * $Id: mpiosh.c,v 1.1 2002/09/12 18:49:36 crunchy Exp $
+ * $Id: mpiosh.c,v 1.2 2002/09/13 07:00:46 crunchy Exp $
*
* Author: Andreas Büsching <crunchy@tzi.de>
*
@@ -331,7 +331,6 @@ main(int argc, char *argv[]) {
char * line;
char ** cmds, **walk;
mpiosh_cmd_t *cmd;
- int idx;
UNUSED(argc);
UNUSED(argv);
diff --git a/mpiosh/mpiosh.h b/mpiosh/mpiosh.h
index 2916cbb..a26c911 100644
--- a/mpiosh/mpiosh.h
+++ b/mpiosh/mpiosh.h
@@ -2,7 +2,7 @@
*
* Author: Andreas Büsching <crunchy@tzi.de>
*
- * $Id: mpiosh.h,v 1.1 2002/09/12 18:49:36 crunchy Exp $
+ * $Id: mpiosh.h,v 1.2 2002/09/13 07:00:46 crunchy Exp $
*
* Copyright (C) 2002 Andreas Büsching <crunchy@tzi.de>
*
@@ -24,14 +24,6 @@
#ifndef _MPIOSH_H_
#define _MPIOSH_H_
-#if !defined TRUE
-# define TRUE 1
-#endif
-
-#if !defined FALSE
-# define FALSE 1
-#endif
-
typedef void(*cmd_callback)(char *args[]);
typedef struct {