}
function startup ()
-int i;
+int i;
+prefix px;
+
{
print "Bird filter language: selftesting...";
i = 4;
print "IPsets: true = " 1.2.3.4 ~ [ 1.2.3.3..1.2.3.5 ];
print " false = " 1.2.3.4 ~ [ 1.2.3.3, 1.2.3.5 ];
+ print "Testing prefixes: 1.2.3.4/18 = " 1.2.3.4/18;
+ print "Testing pairs: (1,2) = " (1,2);
+
+ print "Testing functions...";
callme ( 1, 2, );
callme ( 2, 2, );
callme ( 3, 2, );
callme ( 7, 2, );
print "done";
-# quitbird;
+ quitbird;
# print "*** FAIL: this is unreachable";
}