home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / src / amiga / gdb-4.12-src.lha / gdb-4.12 / bfd / hosts / miniframe.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-03  |  279 b   |  15 lines

  1. #include "hosts/std-host.h"
  2.  
  3. #define USE_UTIME
  4.  
  5. #define NEED_MKDIR
  6. #define NEED_RMDIR
  7.  
  8. #ifndef    MAXPATHLEN
  9. #define    MAXPATHLEN    1024
  10. #endif    /* MAXPATHLEN */
  11.  
  12. #define bcmp(b1,b2,len)        memcmp(b1,b2,len)
  13. #define bcopy(src,dst,len)    memcpy(dst,src,len)
  14. #define bzero(s,n)        memset(s,0,n)
  15.