#!/bin/sh

if [ X$CC = X ]
then	CC=cc
	for p in `echo $PATH | sed 's/:/ /g'`
	do	if [ -f $p/gcc ]
		then	CC=gcc
		fi
	done
fi
echo $CC
