#!/bin/bash
# Author: Sargis Dallakyan <sargis@scripps.edu>
RESULT=`uname -p`
if [ $RESULT != 'i386' ]; then
	exit 112
fi

exit 0