typedef struct



Hi,
In setjmp.h on a linux system, there is:

typedef struct __jmp_buf_tag
  {
    ...
  } jmp_buf[1];

I could understand typedef struct { } jmp_buf, but how do i
interpret typedef struct { } jmp_buf[1] ?
.