Return to BSD News archive
Path: sserve!manuel!munnari.oz.au!mips!mips!darwin.sura.net!Sirius.dfn.de!fauern!btr0x1!mb3.tu-chemnitz.de!hrz.tu-chemnitz.de!wutcd From: wutcd@hrz.tu-chemnitz.de (Wunsch) Newsgroups: comp.unix.bsd Subject: 386BSD bug fixes Summary: bug fixes Keywords: 386BSD, bugfix Message-ID: <wutcd.708090834@hrz.tu-chemnitz.de> Date: 9 Jun 92 11:53:54 GMT Sender: bin@hrz.tu-chemnitz.de (Owner of all binaries) Organization: tu-chemnitz Lines: 24 Two minor bugs I found are reported here: +++++ /usr/include/stdlib.h: correct prototype for GCC builtin alloca is void * __P((int)); (according to the builtin declaration found in GCC sources) +++++ Seems so, nobody discovered this before (obviously, they all use bcopy instead of the ANSI compliant functions). /sys/kern/kern_subr.c: 188c188 < for (; *from = *to; ++from, ++to) --- > for (; *to = *from; ++from, ++to) +++++ Good luck, J"org (joerg_wunsch%bonnie@hadrian.hrz.tu-chemnitz.de)