File: pytris.c

package info (click to toggle)
pytris 0.98
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 132 kB
  • ctags: 70
  • sloc: python: 934; makefile: 42; sh: 41; ansic: 8
file content (11 lines) | stat: -rw-r--r-- 200 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#include <unistd.h>

extern char **environ;

int main(int argc, char *argv[])
{

    argv[0] = "/usr/games/pytris.py";
    execve(argv[0], argv, environ);
    return (1);			/* shouldn't get here */
}