8 lines
115 B
C
8 lines
115 B
C
|
#include <mlvalues.h>
|
||
|
#include "unix.h"
|
||
|
|
||
|
value unix_getuid() /* ML */
|
||
|
{
|
||
|
return Val_int(getuid());
|
||
|
}
|