add ct miniframe host support
This commit is contained in:
parent
7d0eab7ba1
commit
024b9649f6
1 changed files with 14 additions and 0 deletions
14
bfd/hosts/miniframe.h
Normal file
14
bfd/hosts/miniframe.h
Normal 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)
|
Loading…
Reference in a new issue