Skip to content

Commit fd780c5

Browse files
committed
FIX: access-os function was missing because of the old native definition used
1 parent 11fc8b2 commit fd780c5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/core/n-io.c

+7-7
Original file line numberDiff line numberDiff line change
@@ -1234,13 +1234,13 @@ static REBSER *Read_All_File(char *fname)
12341234
**
12351235
*/ REBNATIVE(access_os)
12361236
/*
1237-
** access-os: native [
1238-
** {Access to various operating system functions (getuid, setuid, getpid, kill, etc.)}
1239-
** field [word!] "Valid words: uid, euid, gid, egid, pid"
1240-
** /set "To set or kill pid (sig 15)"
1241-
** value [integer! block!] "Argument, such as uid, gid, or pid (in which case, it could be a block with the signal no)"
1242-
** ]
1243-
**
1237+
// access-os: native [
1238+
// {Access to various operating system functions (getuid, setuid, getpid, kill, etc.)}
1239+
// field [word!] "Valid words: uid, euid, gid, egid, pid"
1240+
// /set "To set or kill pid (sig 15)"
1241+
// value [integer! block!] "Argument, such as uid, gid, or pid (in which case, it could be a block with the signal no)"
1242+
// ]
1243+
//
12441244
***********************************************************************/
12451245
{
12461246
REBVAL *field = D_ARG(1);

0 commit comments

Comments
 (0)