#!/bin/sh
# DF-0007 build: compile the leak PoC. Run as an unprivileged user.
set -e
cd "$(dirname "$0")"
cc -o leak_sigaction leak_sigaction.c
echo "BUILD_EXIT=$?"
ls -l leak_sigaction
