Remove the obsolete pascal16 (replaced by pascal -ret16).
diff --git a/tools/winebuild/parser.c b/tools/winebuild/parser.c
index 10db504..135344f 100644
--- a/tools/winebuild/parser.c
+++ b/tools/winebuild/parser.c
@@ -453,17 +453,8 @@
if (odp->type >= TYPE_NBTYPES)
{
- /* special case for backwards compatibility */
- if (!strcmp( token, "pascal16" ))
- {
- odp->type = TYPE_PASCAL;
- odp->flags |= FLAG_RET16;
- }
- else
- {
- error( "Expected type after ordinal, found '%s' instead\n", token );
- goto error;
- }
+ error( "Expected type after ordinal, found '%s' instead\n", token );
+ goto error;
}
if (!(token = GetToken(0))) goto error;