mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-03 07:07:20 +00:00
11 lines
157 B
ArmAsm
11 lines
157 B
ArmAsm
/* utime() system call */
|
|
/* svr4 only, sunos4 version calls utimes */
|
|
|
|
#ifdef __svr4__
|
|
|
|
#include "sys/syscallasm.h"
|
|
|
|
defsyscall (utime, SYS_utime)
|
|
|
|
#endif
|