Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!swrinde!zaphod.mps.ohio-state.edu!sdd.hp.com!hplabs!hpl-opus!hpccc!culberts From: culberts@hpccc.HP.COM (Bruce Culbertson) Newsgroups: comp.sys.nsc.32k Subject: Re: Minix comments Message-ID: <5980008@hpccc.HP.COM> Date: 6 Sep 90 20:11:50 GMT References: <9009041816.AA16986@hplwbc.hpl.hp.com> Organization: Hewlett-Packard Co. Lines: 21 Oops! I goofed. In my note titled "Minix comments", change foo() { char bar[] = "Hello"; strcpy (bar, "Bye"); } to foo() { char *bar = "Hello"; strcpy (bar, "Bye"); } -- Bruce