Created
August 26, 2017 08:39
-
-
Save lithiumhead/d725ac3db4a0c59be7c2577347a39ebc to your computer and use it in GitHub Desktop.
Hello World - C Shared Library
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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