...
Code Block | ||||
---|---|---|---|---|
| ||||
void (*signal(int, void (*)(int)))(int);
|
...
Code Block | ||||
---|---|---|---|---|
| ||||
typedef void (*SighandlerType)(int signum);
extern SighandlerType signal(
int signum,
SighandlerType handler
);
|
...
Tool | Version | Checker | Description | section||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
| 299 S | Fully Implementedsectionimplemented | |||||||||
Compass/ROSE |
|
|
|
Related Vulnerabilities
...
CERT C++ Secure Coding Standard: DCL05-CPP. Use typedefs to improve code readability
ISO/IEC 9899:19992011 Section 6.7.78, "Type definitions"
ISO/IEC TR 24772 "BRS Leveraging human experience"
...