bsds are very strict on C standards

No labels before declarations.
This commit is contained in:
Calvin Rose 2023-10-08 15:37:23 -05:00
parent 7511eadaa7
commit e209e54ffe
1 changed files with 1 additions and 1 deletions

View File

@ -1408,9 +1408,9 @@ static void janet_ev_setup_selfpipe(void) {
/* Handle events from the self pipe inside the event loop */
static void janet_ev_handle_selfpipe(void) {
recur:
JanetSelfPipeEvent response;
int status;
recur:
do {
status = read(janet_vm.selfpipe[0], &response, sizeof(response));
} while (status == -1 && errno == EINTR);