Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 14 Aug 1996 20:53:48 -0700
From:      Tim Kientzle <kientzle@netcom.com>
To:        bugs@freebsd.org
Subject:   Minor stdio.h fix
Message-ID:  <32129F4C.41C67EA6@netcom.com>

next in thread | raw e-mail | index | archive | help
/usr/include/stdio.h currently has the following lines:

--------------------------------------------------------
#if !defined(_ANSI_SOURCE) && !defined(__STRICT_ANSI__)
#include <sys/types.h>
#endif

#include <sys/cdefs.h>

#include <machine/ansi.h>
#ifdef  _BSD_SIZE_T_
typedef _BSD_SIZE_T_    size_t;
#undef  _BSD_SIZE_T_
#endif
--------------------------------------------------------
The #include of <machine/ansi.h> should be moved just before
this section.  As it is currently, size_t is defined twice,
since sys/types.h includes machine/ansi.h and defines size_t.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?32129F4C.41C67EA6>