Path: utzoo!utgpu!jarvis.csri.toronto.edu!rutgers!tut.cis.ohio-state.edu!CAD.BERKELEY.EDU!island!orkney!derek
From: island!orkney!derek@CAD.BERKELEY.EDU (Derek Clegg)
Newsgroups: gnu.gcc.bug
Subject: `gcc' dies with a fatal signal 6.
Message-ID: <8909271622.AA09945@orkney.island.uucp>
Date: 27 Sep 89 16:22:28 GMT
Sender: daemon@tut.cis.ohio-state.edu
Distribution: gnu
Organization: GNUs Not Usenet
Lines: 33

/* Version:
 *     gcc version 1.36
 * File:
 *     
 * Compile with:
 *     gcc -g 
 * Problem:
 *     `gcc' dies with a fatal signal 6.
 * Output:
 *     :26: parse error before `EVENT'
 *     :26: warning: data definition lacks type or storage class
 *     :27: parse error before `{'
 *     :29: `ActiveProcess' undeclared, outside of functions
 *     :29: warning: data definition lacks type or storage class
 *     :30: parse error before `return'
 *     gcc: Program cc1 got fatal signal 6.
 * Notes:
 *     gcc was compiled with `config.gcc sun3-os4'.
 *     I am using a Sun 3/60 with UNIX 4.2 (Sun release 4.0.1).
 *
 *		Derek B Clegg ({ucbcad,sun}!island!derek)
 */

int
NextEvent(e)
EVENT *e;
{
    struct FrameBuffer *fb;
    fb = (struct FrameBuffer *)ActiveProcess->fb;
    return (sizeof(*e));
}

void FlushMouse() {}