Re: [Mingw-w64-public] [PATCH 3/3] RFC: headers: Don't declare getpid for msvcrt versions where it's missing

2019-04-10 Thread Jacek Caban
On 4/10/19 3:09 PM, Martin Storsjö wrote: If the getpid function is missing, user code might try to reimplement it, with minor mismatches to the signature. Signed-off-by: Martin Storsjö That looks reasonable to me. Jacek ___ Mingw-w64-public

[Mingw-w64-public] [PATCH 3/3] RFC: headers: Don't declare getpid for msvcrt versions where it's missing

2019-04-10 Thread Martin Storsjö
If the getpid function is missing, user code might try to reimplement it, with minor mismatches to the signature. Signed-off-by: Martin Storsjö --- Suggestions on better ways of handling it are welcome. Within vlc, if the getpid function is missing, vlc provides its own compat wrapper. This is