Skip to content

Instantly share code, notes, and snippets.

@KatrinaHoffert
Created November 24, 2014 02:53
Show Gist options
  • Save KatrinaHoffert/32b0bdb1007211216377 to your computer and use it in GitHub Desktop.
Save KatrinaHoffert/32b0bdb1007211216377 to your computer and use it in GitHub Desktop.
Demonstration of include guards -- before include guards
int foo();
#include "xxx.h"
#include "yyy.h"
int main() {
return 0;
}
#include "aaa.h"
#include "aaa.h"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment