From owner-freebsd-bugs Sat Jan 27 14:20:07 1996 Return-Path: owner-bugs Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id OAA05420 for bugs-outgoing; Sat, 27 Jan 1996 14:20:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id OAA05377 Sat, 27 Jan 1996 14:20:04 -0800 (PST) Date: Sat, 27 Jan 1996 14:20:04 -0800 (PST) Message-Id: <199601272220.OAA05377@freefall.freebsd.org> To: freebsd-bugs Cc: From: Bruce Evans Subject: Re: misc/973: stdlib.h and size_t Reply-To: Bruce Evans Sender: owner-bugs@FreeBSD.ORG Precedence: bulk The following reply was made to PR misc/973; it has been noted by GNATS. From: Bruce Evans To: FreeBSD-gnats-submit@FreeBSD.org, tsingle@talon.gsfc.nasa.gov Cc: Subject: Re: misc/973: stdlib.h and size_t Date: Sun, 28 Jan 1996 08:59:44 +1100 >>Description: >stdlib.h references size_t, yet doesn't define this name. stdlib.h No, size_t is declared on line 42 of stdlib.h if it isn't already declared. >>Fix: >stdlib.h should #include sys/types.h No, sys/types.h declares many other things that aren't supposed to be declared by stdlib.h. Bruce