You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The missing prototype error was being triggered due to one of the
following:
- the prototype was effectively missing;
- the prototype was ill defined (mainly, no paramter function prototypes
missed 'void' as paramter list;
- the function did not have a prototype but did not require it. Mostly,
because it was only used in the compilation unit - in this case to avoid,
the error it must be defined as static;
In some other cases these functions had a prototype defined which was
not necessary and was thus removed.
Signed-off-by: Miguel Silva <[email protected]>
0 commit comments