...
This compliant solution makes use of the typedef
name names to specify exactly the same type as in the non-compliant coding example.
Code Block | ||
---|---|---|
| ||
typedef void fv(int),
typedef void (*pfv)(int);
fv *signal(int, fv *);
pfv signal(int, pfv);
|
...