#! /bin/sh
# cov-internal-thunk.sh
#
# run a program; this is a helper for cov-build; used only on unix
# (not windows); the point is to cross an exec boundary, where
# 'exec(2)' is found via a dynamically linked library

exec "$@"

# EOF

