DragonFlyBSD Kernel Audit
DF-0490 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
#!/bin/sh
# DF-0490 build script
# Build: cc -o poc_df0490 poc_df0490.c
set -e
cd "$(dirname "$0")"
cc -o poc_df0490 poc_df0490.c
echo "BUILD_OK: poc_df0490"