Bug 452218 - Reports implicit declarations despite code compiles without warnings
Summary: Reports implicit declarations despite code compiles without warnings
Status: REPORTED
Alias: None
Product: kdevelop
Classification: Applications
Component: Problem reporter (show other bugs)
Version: 5.7.211203
Platform: Arch Linux Linux
: NOR normal
Target Milestone: ---
Assignee: kdevelop-bugs-null
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-04-03 09:48 UTC by Norbert
Modified: 2022-04-03 14:48 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments
Errors visible (131.77 KB, image/png)
2022-04-03 09:49 UTC, Norbert
Details
Compiles without errors/warnings (4.70 KB, image/png)
2022-04-03 09:50 UTC, Norbert
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Norbert 2022-04-03 09:48:26 UTC
SUMMARY
The code is marked as invalid or warnings are listed.

STEPS TO REPRODUCE
1. Insert sample code.
2. Watch the errors
3. Compile code without warnings or errors

OBSERVED RESULT
Lots of errors and warining despite correct includes

EXPECTED RESULT
No warnings or errors

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Arch Linux
KDE Plasma Version: 5.24.3
KDE Frameworks Version: 5.92.0
Qt Version: 5.15.3

ADDITIONAL INFORMATION
Sample code used:
```c
#include <stdio.h>
#include <signal.h>
#include <stdlib.h>

#define SIGNAL SIGUSR1

void action_handler(int sig, siginfo_t *info, void *ucontext) {
    printf("received signal %d\n", sig);
    exit(0);
}

int main(int argc, char** argv) {

    struct sigaction sa;
    sigaction(SIGNAL, NULL, &sa);
    sa.sa_sigaction = action_handler;
    sigaction(SIGNAL, &sa, NULL);

    raise(SIGNAL);

    while(1);

    return 0;
}
```
Comment 1 Norbert 2022-04-03 09:49:33 UTC
Created attachment 147929 [details]
Errors visible
Comment 2 Norbert 2022-04-03 09:50:21 UTC
Created attachment 147930 [details]
Compiles without errors/warnings
Comment 3 Norbert 2022-04-03 14:48:49 UTC
Adding
`#define __USE_POSIX 1`
before
`#include <signal.h>`
sometimes fixes the issue.