aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@cygnus>1993-05-14 09:39:38 +0000
committerKen Raeburn <raeburn@cygnus>1993-05-14 09:39:38 +0000
commit024b9649f66545209ca919bb2bb66982623c4fc9 (patch)
tree0f59e6a98db9d02553a9ac6fc40f9824b41a3e48 /bfd
parent7d0eab7ba1e7f90a27be0ca82d1bfeacaea97a37 (diff)
downloadgdb-024b9649f66545209ca919bb2bb66982623c4fc9.zip
gdb-024b9649f66545209ca919bb2bb66982623c4fc9.tar.gz
gdb-024b9649f66545209ca919bb2bb66982623c4fc9.tar.bz2
add ct miniframe host support
Diffstat (limited to 'bfd')
-rw-r--r--bfd/hosts/miniframe.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/bfd/hosts/miniframe.h b/bfd/hosts/miniframe.h
new file mode 100644
index 0000000..cf6408d
--- /dev/null
+++ b/bfd/hosts/miniframe.h
@@ -0,0 +1,14 @@
+#include "hosts/std-host.h"
+
+#define USE_UTIME
+
+#define NEED_MKDIR
+#define NEED_RMDIR
+
+#ifndef MAXPATHLEN
+#define MAXPATHLEN 1024
+#endif /* MAXPATHLEN */
+
+#define bcmp(b1,b2,len) memcmp(b1,b2,len)
+#define bcopy(src,dst,len) memcpy(dst,src,len)
+#define bzero(s,n) memset(s,0,n)