Skip to content

Instantly share code, notes, and snippets.

@deciduously
Created May 26, 2022 16:17
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 deciduously/398cab90bfe31eb179f0ea0b98a568f5 to your computer and use it in GitHub Desktop.
Save deciduously/398cab90bfe31eb179f0ea0b98a568f5 to your computer and use it in GitHub Desktop.
Basic sanity check for linking libc
#include <stdio.h>
int main(void)
{
char *greeting = "Hello, World!";
printf("%s\n", greeting);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment