root / trunk / util / godmode.c

Revision 157, 142 bytes (checked in by saurik, 9 months ago)

Moving in new toolchain patches.

Line 
1#include <sys/types.h>
2#include <unistd.h>
3
4int main(int argc, char *argv[]) {
5    setuid(0);
6    setgid(0);
7    execvp(argv[1], argv + 1);
8}
Note: See TracBrowser for help on using the browser.