Skip to content

Instantly share code, notes, and snippets.

@syoyo
Created March 7, 2009 08:35
Show Gist options
  • Save syoyo/75275 to your computer and use it in GitHub Desktop.
Save syoyo/75275 to your computer and use it in GitHub Desktop.
/* main.c */
float muda(float x)
{
float y;
float bora (float z) {
// extern float y; NG in gcc
return y + z;
}
return bora(x);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment