/**************************************************************
 *
 *      WBTF.c - Brings the Workbench screen to the front.
 *
 *      Copyright (c) 1989, Peter Cherna
 *
 *      Created:  March 26, 1989
 *      Modified: March 26, 1989        Release 1.2:  August 29, 1989
 *
 *      Auto: cc -q -o RAM:<file>.o <path><file>
 *      Auto: ln RAM:<file>.o -lc -o <path><file>
 *
 **************************************************************/

#include <functions.h>
#ifndef INTUITION_INTUITION_H
#include <intuition/intuition.h>
#endif

struct IntuitionBase *IntuitionBase = NULL;

main()
    {
    IntuitionBase = (struct IntuitionBase *)
        OpenLibrary("intuition.library",0L);
    WBenchToFront();
    CloseLibrary(IntuitionBase);
    }
