aboutsummaryrefslogtreecommitdiff
path: root/fastjar/jartool.c
diff options
context:
space:
mode:
authorDiego Novillo <dnovillo@redhat.com>2002-09-15 18:52:06 +0000
committerDiego Novillo <dnovillo@redhat.com>2002-09-15 18:52:06 +0000
commitba302b5767e50d94cb6f65497b17ef0b6adff7b2 (patch)
tree625190ec90943d9c529029cbe701637069bed251 /fastjar/jartool.c
parentf6dcd8aa635a5501b6687e1bcb77829a6e179f1c (diff)
Mainline merge as of 2002-09-15.
git-svn-id: https://gcc.gnu.org/svn/gcc/branches/tree-ssa-20020619-branch@57168 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'fastjar/jartool.c')
-rw-r--r--fastjar/jartool.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/fastjar/jartool.c b/fastjar/jartool.c
index 7251185d61f..bb3440353a0 100644
--- a/fastjar/jartool.c
+++ b/fastjar/jartool.c
@@ -239,6 +239,12 @@
#include "pushback.h"
#include "compress.h"
+/* Some systems have mkdir that takes a single argument. */
+#ifdef MKDIR_TAKES_ONE_ARG
+# define mkdir(a,b) mkdir(a)
+#endif
+
+
#ifdef WORDS_BIGENDIAN
#define L2BI(l) ((l & 0xff000000) >> 24) | \