Skip to content

Commit

Permalink
[build] fix build undefined reference to `raise'
Browse files Browse the repository at this point in the history
  • Loading branch information
YuzukiTsuru committed Dec 1, 2023
1 parent a02ff74 commit c1d6c2b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ void abort(void)
{
while (1)
;
}

int raise(void)
{
return 0;
}

0 comments on commit c1d6c2b

Please sign in to comment.