#! /bin/sh

echo "[PoCC] Insert OpenMP includes";


echo "#include <omp.h>" > .head;
cat $1 > .tail

cat .head .tail > $1;
rm -f .head .tail;
