mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
15 lines
279 B
C
15 lines
279 B
C
#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)
|