projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7d0eab7
)
add ct miniframe host support
author
Ken Raeburn
<raeburn@cygnus>
Fri, 14 May 1993 09:39:38 +0000
(09:39 +0000)
committer
Ken Raeburn
<raeburn@cygnus>
Fri, 14 May 1993 09:39:38 +0000
(09:39 +0000)
bfd/hosts/miniframe.h
[new file with mode: 0644]
patch
|
blob
diff --git a/bfd/hosts/miniframe.h
b/bfd/hosts/miniframe.h
new file mode 100644
(file)
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)