@bool Qualifier

Some compiler vendors provide the special keyword @bool to specify that a function returns a boolean value:

  @bool int myfun(void);

  

Because this compiler does not support this special keyword, remove @bool or use a define such as this:

  #define _BOOL /*@bool*/

  
  _BOOL int myfun(void);