We get a fresh one each time, to catch uninitialized fields */
| 126 | |
| 127 | /* We get a fresh one each time, to catch uninitialized fields */ |
| 128 | static struct info *new_info(const tal_t *ctx) |
| 129 | { |
| 130 | struct info *info = tal(ctx, struct info); |
| 131 | memset(&info->seed, 7, sizeof(info->seed)); |
| 132 | |
| 133 | return info; |
| 134 | } |
| 135 | |
| 136 | int main(int argc, char *argv[]) |
| 137 | { |