Skip to content

Instantly share code, notes, and snippets.

@bobbyg603
Created July 31, 2022 10:45
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 bobbyg603/9aded9ececbe5c65b826b70a73f909e0 to your computer and use it in GitHub Desktop.
Save bobbyg603/9aded9ececbe5c65b826b70a73f909e0 to your computer and use it in GitHub Desktop.
How to Build a Linux Shared Library
// Allows us to reference built-in standard library input/output functions
#include <stdio.h>
// Our function definition void (return type) foo (function name) void (parameter type)
void mars(void)
{
// Use the standard library to print to the terminal window
puts("Hello Mars!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment