blob: 283557b1957d6157b74dcbcf3094738f4cc2b563 [file] [log] [blame]
struct M {
int head;
struct M * tail;
};
int loop(struct M * m) {
return m && m == m->tail;
}