2 Copyright © 1995-2006, The AROS Development Team. All rights reserved.
5 Desc: Rexx stub for Delay system function
9 #include <proto/alib.h>
10 #include <proto/exec.h>
11 #include <proto/dos.h>
12 #include <proto/rexxsyslib.h>
13 #include <exec/types.h>
14 #include <rexx/storage.h>
15 #include <rexx/errors.h>
21 #include "rexxsupport_intern.h"
22 #include "rxfunctions.h"
24 LONG
rxsupp_delay(struct Library
*RexxSupportBase
, struct RexxMsg
*msg
, UBYTE
**argstring
)
27 char *arg
= ARG1(msg
);
36 for (pos
= 0; pos
< len
; pos
++)
38 if (!isdigit(arg
[pos
]))
47 *argstring
= CreateArgstring("0", 1);