blob: 239d92378d9bbe647ce5b922d095637caa67904d [file] [log] [blame]
macro_rules! define_struct {
($rounds:expr) => (
struct Struct {
sk: [u32; $rounds + 1]
}
)
}
define_struct!(2);