1022 - Missing Function header close token '%c'.
Description
    
While parsing a function header, the closing ')' could not be found to terminate the header.
    
Example
    
Config:
    Alias( 'name'
{
    ...
}
Output:
c:\Test\fbuild.bff(1):(6) FASTBuild Error #1022 - Alias() - Missing Function header close token ')'.
Alias( 'name'
     ^
     \--here
Fix:
Alias( 'name' )
{
    ...
}
    