Re: include-file cleanup

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Bruce Momjian <maillist(at)candle(dot)pha(dot)pa(dot)us>
Cc: pgsql-hackers(at)postgreSQL(dot)org
Subject: Re: include-file cleanup
Date: 1999-07-17 04:51:58
Message-ID: 19088.932187118@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

> I have reviewed and replaced config.h in all files it appeared in in
> 6.5, where postgres.h or c.h were not already included. I have also
> removed config.h from the cleaning script, just as postgres.h was never
> removed.

OK, that sounds good.

The thing that bothers me is why config.h got removed from these
port files in the first place. The compiler warning I got (because
I use gcc -Wmissing-prototypes) was that "random" and "srandom"
were defined without having been declared in any include file.
Now config.h provides prototypes for those functions --- inside
#ifdefs of course, but they are there. Your script should have
noticed that the name "random" mentioned in config.h was also
mentioned in port/random.c, and therefore not removed the include
of config.h from random.c. Why did it not make the connection?

regards, tom lane

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 1999-07-17 05:09:21 Re: include-file cleanup
Previous Message Bruce Momjian 1999-07-17 04:14:15 Re: include-file cleanup