mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-12-21 23:29:16 +00:00
10 lines
165 B
C
10 lines
165 B
C
|
#include <stdio.h>
|
||
|
#include <orca.h>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
setenv("user","root");
|
||
|
setenv("home",":user:root");
|
||
|
execve("/bin/gsh","gsh");
|
||
|
}
|