mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-25 08:07:12 -04:00
20 lines
145 B
Text
20 lines
145 B
Text
|
|
@ rule1 @
|
||
|
|
identifier f1;
|
||
|
|
@@
|
||
|
|
|
||
|
|
void f1(...)
|
||
|
|
{
|
||
|
|
...
|
||
|
|
}
|
||
|
|
|
||
|
|
@ rule2 @
|
||
|
|
identifier rule1.f1;
|
||
|
|
identifier f2;
|
||
|
|
@@
|
||
|
|
|
||
|
|
void f2(...) {
|
||
|
|
...
|
||
|
|
* return(f1(...));
|
||
|
|
...
|
||
|
|
}
|