#include <stdio.h>

/* This is a prototype.  Use them. */
int blah(int foo);

void main(void)
{
  printf("blah(5) = %d\n", blah(5));
}

int blah(int foo)
{
  return(2*foo);
}
