#include <perms.h>
void LONG(void) /* See
                   https://gcc.gnu.org/onlinedocs/gcc-4.7.2/gcc/Function-Attributes.html
                 */
{
  _imp_enter();

  _imp_leave();
}
void ERRORS(void) {
  _imp_enter();
  int FRED;
  extern int JIM;
  extern int *BLOGGS;
  extern int WRONG[10 - 1 + 1];
  extern int RIGHT[10 - 1 + 1];
  const int RUBBISH;
  int *KNOT;

  _imp_leave();
}
