home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / vbcc / machines / amigappc / libsrc / stdio / remove.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-24  |  359 b   |  19 lines

  1. #include <stdio.h>
  2. #include <dos/dos.h>
  3. #include <powerup/gcclib/powerup_protos.h>
  4.  
  5. extern ULONG DOSBase;
  6.  
  7. int remove(const char *name)
  8. {
  9.   struct Caos MyCaos;
  10.  
  11.   MyCaos.d1 = (ULONG)name;
  12.   MyCaos.M68kCacheMode = IF_CACHEFLUSHALL;
  13.   MyCaos.PPCCacheMode = IF_CACHEFLUSHALL;
  14.   MyCaos.caos_Un.Offset = -72;
  15.   MyCaos.a6 = DOSBase;
  16.   return PPCCallOS(&MyCaos);
  17. }
  18.  
  19.