Skip to content

Instantly share code, notes, and snippets.

@athos-ribeiro
Created January 30, 2014 13:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save athos-ribeiro/8708563 to your computer and use it in GitHub Desktop.
Save athos-ribeiro/8708563 to your computer and use it in GitHub Desktop.
showing linkage error
#include <stdio.h>
#include "this_does_not_exist.h"
int main() {
printf("hello world\n");
funcao_inexistente();
return 0;
}
@athos-ribeiro
Copy link
Author

cria o arquivo vazio pro .h e compila com -c
;)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment