Skip to content

Instantly share code, notes, and snippets.

@aaronyoo
Created December 28, 2018 20:13
Show Gist options
  • Save aaronyoo/057d567e53e66f4be1b3913f29168179 to your computer and use it in GitHub Desktop.
Save aaronyoo/057d567e53e66f4be1b3913f29168179 to your computer and use it in GitHub Desktop.
Example C program from Learning Linux Binary Analysis
#include <stdio.h>
int func1(int a, int b, int c) {
printf("%d %d %d\n", a, b, c);
}
int main(void) {
func1(1, 2, 3);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment