Обсуждение: #include present twice in define.pgc

Поиск
Список
Период
Сортировка

#include present twice in define.pgc

От
Ashutosh Sharma
Дата:
Hi All,

I could see that the #include <stdlib.h> statement is present twice in the define.pgc test file. See below:

[ashu@localhost postgresql]$ head src/interfaces/ecpg/test/preproc/define.pgc
#include <stdlib.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>

exec sql include ../regression;

...
...

Should we consider removing one of them?

I know that there won't be multiple inclusion of the same header file because of #ifndef and #define pre-processor directives which defines _STDLIB_H macro that allows the file to included just once, but I still feel that it is better to avoid having such things. It doesn't do any harm but is certainly not required. Thoughts?

--
With Regards,
Ashutosh Sharma
EnterpriseDB:http://www.enterprisedb.com

Re: #include present twice in define.pgc

От
Peter Eisentraut
Дата:
On 2020-09-07 15:47, Ashutosh Sharma wrote:
> I could see that the #include <stdlib.h> statement is present twice in 
> the define.pgc test file. See below:
> 
> [ashu@localhost postgresql]$ head 
> src/interfaces/ecpg/test/preproc/define.pgc
> #include <stdlib.h>
> #include <string.h>
> #include <stdlib.h>
> #include <stdio.h>

fixed



Re: #include present twice in define.pgc

От
Ashutosh Sharma
Дата:
thanks.!

On Monday, January 25, 2021, Peter Eisentraut <peter.eisentraut@enterprisedb.com> wrote:
On 2020-09-07 15:47, Ashutosh Sharma wrote:
I could see that the #include <stdlib.h> statement is present twice in the define.pgc test file. See below:

[ashu@localhost postgresql]$ head src/interfaces/ecpg/test/preproc/define.pgc
#include <stdlib.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>

fixed