#!/bin/sh
# DF-0938 build: compile the PoC as the unprivileged user.
set -e
cd "$(dirname "$0")"
cc -O2 -o poc poc.c
echo "BUILD_OK: poc"
