#!/bin/sh
#
# tjcc -- loop around the real tjcc

: ${TJCC=/usr/local/bin/tjcc}

for f
do
    "${TJCC}" "$f"
done
