#!/bin/sh
# DF-2570 build script - compiles the trigger PoC (documentation only).
# The trigger cannot exercise live code (the vulnerable module is dead code
# and cannot be built), but it documents the trigger path.
set -e
cd "$(dirname "$0")"
cc -O2 -Wall -o trigger trigger.c
echo "BUILD_EXIT=$?"
ls -l trigger
