[svn-r237] I am checking in changes made by Robb. Turn off another two tedious

warnings.
# -woff 1209    about constant expressions
# -woff 1196    about __vfork() being implicitly declared, config prob.
This commit is contained in:
Albert Cheng 1998-02-10 11:07:58 -05:00
parent 66d18e9bf2
commit e9360a7c0d

View File

@ -39,8 +39,10 @@ CC="cc -ansi -64"
# -woff 1174 about function declared but not used
# -woff 1429 about long long type non-standard
warn="-fullwarn -woff 1174,1429"
#warn="-woff 1174,1429"
# -woff 1209 about constant expressions
# -woff 1196 about __vfork() being implicitly declared, config prob.
warn="-fullwarn -woff 1174,1429,1209,1196"
#warn="-woff 1174,1429,1209,1196"
profile="-pg"