Skip to content

Instantly share code, notes, and snippets.

@fyquah
Created March 23, 2016 13:35
Show Gist options
  • Save fyquah/ab6ce150d6896911b607 to your computer and use it in GitHub Desktop.
Save fyquah/ab6ce150d6896911b607 to your computer and use it in GitHub Desktop.
mine.c
#include "shared_headers.h"
int my_fnc() {
int a = your_fnc();
return a + 1;
}
int my_fnc();
int your_fnc();
#include "shared_headers.h"
int your_fnc() {
return 2 + 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment