mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-18 19:09:31 +00:00
451e159fb7
of the util shipped with GNO v2.0.4.
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");
|
|
}
|