mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-22 10:10:06 +00:00
20 lines
145 B
Plaintext
20 lines
145 B
Plaintext
|
@ rule1 @
|
||
|
identifier f1;
|
||
|
@@
|
||
|
|
||
|
void f1(...)
|
||
|
{
|
||
|
...
|
||
|
}
|
||
|
|
||
|
@ rule2 @
|
||
|
identifier rule1.f1;
|
||
|
identifier f2;
|
||
|
@@
|
||
|
|
||
|
void f2(...) {
|
||
|
...
|
||
|
* return(f1(...));
|
||
|
...
|
||
|
}
|