c2hs-0.28.7: tests/bugs/issue-257/issue257.c
#include <stdlib.h>
#include "issue257.h"
struct bools* make_bools(bool a, bool b, bool c, bool d) {
struct bools* bs = malloc(sizeof(struct bools));
bs->a = a;
bs->b = b;
bs->c = c;
bs->d = d;
return bs;
}