There should be only one space before a keyword. The anti-pattern has two spaces before “Lib”.

Anti-pattern

Private Declare Function Foo  Lib "Foo" ()

Best practice

Private Declare Function Foo Lib "Foo" ()