Re: issetugid - not declared when _XOPEN_SOURCE is also defined

2016-11-10 Thread cyg Simple
On 11/10/2016 4:10 AM, Corinna Vinschen wrote: > On Nov 9 14:41, cyg Simple wrote: >> On 11/9/2016 1:13 PM, cyg Simple wrote: >>> The following program demonstrates the issue. Should issetugid be >>> declared with this scenario? >>> >>> /*/ >>>

Re: issetugid - not declared when _XOPEN_SOURCE is also defined

2016-11-10 Thread Corinna Vinschen
On Nov 9 14:41, cyg Simple wrote: > On 11/9/2016 1:13 PM, cyg Simple wrote: > > The following program demonstrates the issue. Should issetugid be > > declared with this scenario? > > > > /*/ > > #define _XOPEN_SOURCE 1 /* Causes declare warnin

Re: issetugid - not declared when _XOPEN_SOURCE is also defined

2016-11-09 Thread cyg Simple
On 11/9/2016 1:13 PM, cyg Simple wrote: > The following program demonstrates the issue. Should issetugid be > declared with this scenario? > > /*/ > #define _XOPEN_SOURCE 1 /* Causes declare warning */ > #define __BSD_VISIBLE 1 > #include > >

issetugid - not declared when _XOPEN_SOURCE is also defined

2016-11-09 Thread cyg Simple
The following program demonstrates the issue. Should issetugid be declared with this scenario? /*/ #define _XOPEN_SOURCE 1 /* Causes declare warning */ #define __BSD_VISIBLE 1 #include int main(int argc, char ** argv) { int result;