add ct miniframe host support

This commit is contained in:
Ken Raeburn 1993-05-14 09:39:38 +00:00
parent 7d0eab7ba1
commit 024b9649f6
1 changed files with 14 additions and 0 deletions

14
bfd/hosts/miniframe.h Normal file
View File

@ -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)