X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=include%2Fsetjmp.h;h=7dc72767db832ec9b5930bd5fa9f072e97300eb0;hp=28ff92e402b60daa14bcde580e868219ff413caf;hb=0d4d1a96e4fd827267250e469affc7ebfc44324f;hpb=d6c0efe106b1016108207fb6872820c06dcef4f8 diff --git a/include/setjmp.h b/include/setjmp.h index 28ff92e4..7dc72767 100644 --- a/include/setjmp.h +++ b/include/setjmp.h @@ -14,7 +14,7 @@ extern "C" { typedef struct { jmp_buf __jb; unsigned long __fl; - unsigned long __ss[128]; + unsigned long __ss[128/sizeof(long)]; } sigjmp_buf[1]; int sigsetjmp (sigjmp_buf, int); void siglongjmp (sigjmp_buf, int);