mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-01-20 06:30:12 +00:00
17 lines
412 B
C
17 lines
412 B
C
|
#pragma optimize -1
|
||
|
#pragma stacksize 256
|
||
|
|
||
|
/* */
|
||
|
/* newverify.c - a simple program to launch newuser with the -v option */
|
||
|
/* */
|
||
|
|
||
|
#include<stdio.h>
|
||
|
#include<stdlib.h>
|
||
|
#include<gno/gno.h>
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
|
||
|
{
|
||
|
execve("/usr/sbin/newuser","newuser -v");
|
||
|
}
|