core: posix: Prepare for M2-Planet.
* src/posix.c (access_p): Prepare for M2-Planet.
This commit is contained in:
parent
c58049d48d
commit
a7273407ea
|
@ -193,7 +193,8 @@ setenv_ (SCM s, SCM v) /*:((name . "setenv")) */
|
||||||
SCM
|
SCM
|
||||||
access_p (SCM file_name, SCM mode)
|
access_p (SCM file_name, SCM mode)
|
||||||
{
|
{
|
||||||
if (access (cell_bytes (STRING (file_name)), VALUE (mode)) == 0)
|
int result = access (cell_bytes (STRING (file_name)), VALUE (mode));
|
||||||
|
if (result == 0)
|
||||||
return cell_t;
|
return cell_t;
|
||||||
return cell_f;
|
return cell_f;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue