On Fri, Nov 24, 2023 at 2:58 AM Christoph Muellner
wrote:
>
> From: Christoph Müllner
>
> GCC raises the following warning:
> warning: 'status' may be used uninitialized
> The warning comes from the fact, that the signature of waitpid() is
> unknown and therefore the initialization of GCC canno
On 23/11/2023 19:58, Christoph Muellner wrote:
From: Christoph Müllner
GCC raises the following warning:
warning: 'status' may be used uninitialized
The warning comes from the fact, that the signature of waitpid() is
unknown and therefore the initialization of GCC cannot be guessed.
Let's ad
From: Christoph Müllner
GCC raises the following warning:
warning: 'status' may be used uninitialized
The warning comes from the fact, that the signature of waitpid() is
unknown and therefore the initialization of GCC cannot be guessed.
Let's add the relevant header to address this warning.
Si