mescc: Mes C Library: Prepare for M2-Planet: unlink.

* lib/linux/unlink.c (unlink): Prepare for M2-Planet.
This commit is contained in:
Jan (janneke) Nieuwenhuizen 2020-07-25 19:54:49 +02:00 committed by Jan Nieuwenhuizen
parent e9eed6c996
commit 6e0ff69fc8
No known key found for this signature in database
GPG Key ID: A781B6A92F5C71D6
1 changed files with 1 additions and 1 deletions

View File

@ -24,5 +24,5 @@
int
unlink (char const *file_name)
{
return _sys_call1 (SYS_unlink, (long) file_name);
return _sys_call1 (SYS_unlink, file_name);
}