--allow-empty

This commit is contained in:
2025-03-10 04:20:44 +01:00
parent 9f12caa9a8
commit 5716bb9b25
12 changed files with 185 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
CC = gcc
CFLAGS = -Wall -Wextra -g -std=c99 -g -fno-stack-protector -no-pie
intro-pwn: intro-pwn.c
$(CC) $(CFLAGS) -o intro-pwn intro-pwn.c
clean:
rm -f intro-pwn