Skip to content

Instantly share code, notes, and snippets.

@benjamn
Created September 22, 2009 18:58
Show Gist options
  • Save benjamn/191320 to your computer and use it in GitHub Desktop.
Save benjamn/191320 to your computer and use it in GitHub Desktop.
#define paste(x, y) x##y
#define blah(x) paste(blah, x)
int main()
{
int blahbar = 0;
return blah(FOO);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment