#!/bin/sh
# DF-0799 PoC build script
set -e
cd "$(dirname "$0")"
cc -O2 -o toctou_race toctou_race.c -lpthread
echo "BUILD OK: toctou_race"
