We get a fresh one each time, to catch uninitialized fields */
| 133 | |
| 134 | /* We get a fresh one each time, to catch uninitialized fields */ |
| 135 | static struct info *new_info(const tal_t *ctx) |
| 136 | { |
| 137 | struct info *info = tal(ctx, struct info); |
| 138 | memset(&info->seed, 7, sizeof(info->seed)); |
| 139 | |
| 140 | return info; |
| 141 | } |
| 142 | |
| 143 | int main(int argc, char *argv[]) |
| 144 | { |