aboutsummaryrefslogtreecommitdiff
path: root/bfd/hosts/miniframe.h
blob: cf6408d237a91a93d9d1b2492db6e6e340544dbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)