This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: c/6126: Tru64 5.1 doesn't expose stat(2) as a function
- From: Mike Coleman <mkc+dated+1028693179 dot d6e9b5 at mathdogs dot com>
- To: gcc-gnats at gcc dot gnu dot org, gcc-prs at gcc dot gnu dot org, gcc-bugs at gcc dot gnu dot org, nobody at gcc dot gnu dot org, mkc at stowers-institute dot org
- Date: Tue, 23 Jul 2002 04:06:19 GMT
- Subject: Re: c/6126: Tru64 5.1 doesn't expose stat(2) as a function
With rth's addition of the 'extern_prefix' pragma, a simple way to now exists
to fix sys/stat.h on Tru64 5.1, which is to just add
#define _LIBC_POLLUTION_H_
somewhere early in the file. This will prevent stat and friends from being
defined as macros and cause the extern_prefix pragma to be used instead.
The define above probably ought to be added after the includes. Here's a
snippet from that area. Maybe someone that knows fixincludes could whip up a
little pattern.
Mike
[from sys/stat.h:]
#include <standards.h>
#include <sys/types.h>
#include <sys/mode.h>
#if defined(__cplusplus)
extern "C"
{
#endif
http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=6126