Skip to content

Instantly share code, notes, and snippets.

@moret
Created March 1, 2013 14:25
Show Gist options
  • Save moret/5064979 to your computer and use it in GitHub Desktop.
Save moret/5064979 to your computer and use it in GitHub Desktop.
hello_lib
#include <stdio.h>
#include <my_lib.h>
int main(void) {
printf("%s", my_function());
}
/*
Build me with:
gcc hello.c -L../basic_c_lib/bin/ -I../basic_c_lib/src/ -lmy_lib -o hello
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment