Removed unused, unneeded, Lineo-specific script.

1_00_stable_10817
Mark Whitley 2001-01-09 23:09:45 +00:00
parent 744b064a34
commit 55787401ea
1 changed files with 0 additions and 23 deletions

View File

@ -1,23 +0,0 @@
#!/bin/sh
# define.sh - creates an include file full of #defines
#
# SYNOPSIS
#
# define.sh POSIX_ME_HARDER ...
#
# <GPL>
for i ; do
case $1 in
!!*!!)
echo "// #define" `echo $1 | sed 's/^!!\(.*\)!!$/\1/'`
shift
;;
*)
echo "#define $1"
shift
;;
esac
done
# </GPL>