2 Copyright © 1995-2006, The AROS Development Team. All rights reserved.
9 #include <proto/exec.h>
10 #include <proto/dos.h>
11 #include <proto/rexxsyslib.h>
12 #include <exec/types.h>
13 #include <exec/memory.h>
14 #include <rexx/storage.h>
15 #include <rexx/errors.h>
20 #include "rexxsupport_intern.h"
21 #include "rxfunctions.h"
23 LONG
rxsupp_delete(struct Library
*RexxSupportBase
, struct RexxMsg
*msg
, UBYTE
**argstring
)
27 ok
= DeleteFile(ARG1(msg
));
28 *argstring
= CreateArgstring(ok
? "1" : "0", 1);