Skip to content

Instantly share code, notes, and snippets.

@lithiumhead
Created August 26, 2017 08:39
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 lithiumhead/d725ac3db4a0c59be7c2577347a39ebc to your computer and use it in GitHub Desktop.
Save lithiumhead/d725ac3db4a0c59be7c2577347a39ebc to your computer and use it in GitHub Desktop.
Hello World - C Shared Library
#include <stdio.h>
#include "libhello.h"
int main(void)
{
puts("This is a shared library test...");
hello();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment