#include <stdio.h>
#include <stdlib.h>

extern int bar(int);

int main(int argc, char **argv) {
  printf("%d\n", bar(5));
  return EXIT_SUCCESS;
}