mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 18:10:56 +09:00
LibC: Add the SIGFPE si_code macros
This commit is contained in:
parent
224b865fda
commit
48f92f6482
Notes:
sideshowbarker
2024-07-17 23:14:01 +09:00
Author: https://github.com/IdanHo
Commit: 48f92f6482
Pull-request: https://github.com/SerenityOS/serenity/pull/10674
Reviewed-by: https://github.com/bgianfo
Reviewed-by: https://github.com/linusg ✅
1 changed files with 9 additions and 0 deletions
|
@ -68,6 +68,15 @@ struct sigaction {
|
|||
#define CLD_STOPPED 4
|
||||
#define CLD_CONTINUED 5
|
||||
|
||||
#define FPE_INTDIV 0
|
||||
#define FPE_INTOVF 1
|
||||
#define FPE_FLTDIV 2
|
||||
#define FPE_FLTOVF 3
|
||||
#define FPE_FLTUND 4
|
||||
#define FPE_FLTRES 5
|
||||
#define FPE_FLTINV 6
|
||||
#define FPE_FLTSUB 7
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue