#include <stdio.h>
#include <unistd.h>
char *nargv[] = { "fortune", NULL };
int main(int argc, char *argv[])
{
    printf("Content-type: text/plain\r\n\r\n");
    fflush(stdout);
    exect("/usr/games/fortune", nargv, NULL);	 /* No environment, bitch! */
    printf("There is no thought for the day.\n");
    printf("There is only ZUUL.\n");
    fflush(stdout);
    return 0;					/* Shut up, cc. */
}
