pl-sem/sem7/prologue-epilogue.c

16 lines
197 B
C
Raw Permalink Normal View History

2023-08-17 22:08:53 +00:00
/* prologue-epilogue.c */
int maximum(int a, int b) {
char buffer[4096];
buffer[0] = 0x7;
if (a < b)
return b;
return a;
}
int main(void) {
int x = maximum(42, 999);
return 0;
}