add ct miniframe host support
authorKen Raeburn <raeburn@cygnus>
Fri, 14 May 1993 09:39:38 +0000 (09:39 +0000)
committerKen Raeburn <raeburn@cygnus>
Fri, 14 May 1993 09:39:38 +0000 (09:39 +0000)
bfd/hosts/miniframe.h [new file with mode: 0644]

diff --git a/bfd/hosts/miniframe.h b/bfd/hosts/miniframe.h
new file mode 100644 (file)
index 0000000..cf6408d
--- /dev/null
@@ -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)