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 2019-11-02 18:54:49 +01:00
parent 9f26ea94c6
commit e8830a7611
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
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);
}