* simops.c (OP_10007E0): Handle SYS_time.

Check into devo too.
This commit is contained in:
Jeff Law
1996-10-30 15:51:39 +00:00
parent ea5c2d663c
commit 6803f89b14
2 changed files with 7 additions and 0 deletions

View File

@@ -2083,6 +2083,9 @@ OP_10007E0 ()
case SYS_chmod:
RETVAL = chmod (MEMPTR (PARM1), PARM2);
break;
case SYS_time:
RETVAL = time (MEMPTR (PARM1));
break;
case SYS_utime:
/* Cast the second argument to void *, to avoid type mismatch
if a prototype is present. */