mirror of
https://github.com/opnsense/src.git
synced 2026-03-20 18:02:17 -04:00
16 lines
183 B
Text
16 lines
183 B
Text
module "my/module-a" {
|
|
header "a.h"
|
|
use "my/module-c"
|
|
|
|
module "Sub" {
|
|
header "sub.h"
|
|
}
|
|
}
|
|
|
|
module "my/module-b" {
|
|
header "b.h"
|
|
}
|
|
|
|
module "my/module-c" {
|
|
header "c.h"
|
|
}
|