Erlangのrecordを使うときは、Record.extractを使えばよいことを知りましたが、結構長くなります。

iex(1)> require Record
nil

iex(2)> r = Record.extract(:sctp_initmsg, from_lib: "kernel/include/inet_sctp.hrl")
[num_ostreams: :undefined, max_instreams: :undefined, max_attempts: :undefined,
max_init_timeo: :undefined]

毎回これを書く以外に、方法はあるでしょうか? includeのような一回書けば済むものがあるとよいのですが。