1#!/bin/sh
2
3for symbol in `cat $1` ; do
4  echo "#undef ${symbol}"
5done
6