Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(169)

Side by Side Diff: fusl/arch/sh/bits/fenv.h

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fusl/arch/sh/bits/fcntl.h ('k') | fusl/arch/sh/bits/float.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #ifndef __SH_FPU_ANY__
2
3 #define FE_ALL_EXCEPT 0
4 #define FE_TONEAREST 0
5
6 #else
7
8 #define FE_TONEAREST 0
9 #define FE_TOWARDZERO 1
10
11 #define FE_INEXACT 0x04
12 #define FE_UNDERFLOW 0x08
13 #define FE_OVERFLOW 0x10
14 #define FE_DIVBYZERO 0x20
15 #define FE_INVALID 0x40
16 #define FE_ALL_EXCEPT 0x7c
17
18 #endif
19
20 typedef unsigned long fexcept_t;
21
22 typedef struct {
23 unsigned long __cw;
24 } fenv_t;
25
26 #define FE_DFL_ENV ((const fenv_t *) -1)
OLDNEW
« no previous file with comments | « fusl/arch/sh/bits/fcntl.h ('k') | fusl/arch/sh/bits/float.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698