#!/bin/sh
#
#  inStdLibPath - return true if the specified directory is in the list of 
#		  standard library paths. i.e. the ones searched automatically
#		  by the compiler.


stdPaths=`getStdLibPaths`

inPath="false"

for i in $stdPaths
do
	if [ "$i" != "$1" ]
	then
		inPath="false"
	else
		inPath="true"
		exit 0
	fi
done

exit 1
