mescc: Mes C Library: Prepare for M2-Planet: access.
* lib/linux/access.c (access): Prepare for M2-Planet.
This commit is contained in:
parent
442cef4c12
commit
1273e19587
|
@ -24,5 +24,7 @@
|
|||
int
|
||||
access (char const *file_name, int how)
|
||||
{
|
||||
return _sys_call2 (SYS_access, (long) file_name, (int) how);
|
||||
long long_file_name = file_name;
|
||||
long long_how = how;
|
||||
return _sys_call2 (SYS_access, long_file_name, long_how);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue