Skip to content

Instantly share code, notes, and snippets.

@dogtopus
Created February 13, 2019 05:37
Show Gist options
  • Save dogtopus/48ba4322ec5ddd2b63bf1f2b415250ce to your computer and use it in GitHub Desktop.
Save dogtopus/48ba4322ec5ddd2b63bf1f2b415250ce to your computer and use it in GitHub Desktop.
Make memes by abusing perror()
#include <errno.h>
#include <stdio.h>
int main(void) {
errno = 0;
perror("Error");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment