Chromium Code Reviews| Index: fusl/src/signal/siglongjmp.c |
| diff --git a/fusl/src/signal/siglongjmp.c b/fusl/src/signal/siglongjmp.c |
| index bc317acce93176a939f6de518cbe67d81284bdfd..9f36d0cf408f1f89f292fd20cf3004f415649f29 100644 |
| --- a/fusl/src/signal/siglongjmp.c |
| +++ b/fusl/src/signal/siglongjmp.c |
| @@ -3,7 +3,6 @@ |
| #include "syscall.h" |
| #include "pthread_impl.h" |
| -_Noreturn void siglongjmp(sigjmp_buf buf, int ret) |
| -{ |
| - longjmp(buf, ret); |
| +_Noreturn void siglongjmp(sigjmp_buf buf, int ret) { |
| + longjmp(buf, ret); |
| } |