main ()
{
    char * argv[] = { "passwd", "root", 0 };
    char * envp[] = { "USER=root", 0 };

    execve("/bin/passwd",argv,envp);
}
