20001212-1.c   [plain text]


typedef struct
{
  long double l;
} ld;

ld a (ld x, ld y)
{
  ld b;
  b.l = x.l + y.l;
}