Created
August 26, 2017 08:37
-
-
Save lithiumhead/eff09dce13ce4d2402381a7ca78de1ff to your computer and use it in GitHub Desktop.
Hello World - C Shared Library
This file contains hidden or 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> | |
void hello(void) | |
{ | |
puts("Hello, I'm a shared library"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment