/*
 * NoReq disables requesters in the current shell.
 * This code is public domain.
 */


#include <dos/dosextens.h>
#include <proto/exec.h>

int startup(void)
{
        struct Process *Proc;
        struct Library *SysBase;

        SysBase = *((struct Library **) 0x00000004);
        Proc = (struct Process *) FindTask(NULL);
        Proc->pr_WindowPtr = (APTR) -1L;
        return (0);
}
