X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Fsetjmp.h;h=7dc72767db832ec9b5930bd5fa9f072e97300eb0;hb=67ba40d1e05c39ffe71294476d2f2c13c481f3bd;hp=28ff92e402b60daa14bcde580e868219ff413caf;hpb=d6c0efe106b1016108207fb6872820c06dcef4f8;p=musl 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);