beket's projects
/
mathlib.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
ulps: Fix long lines
[mathlib.git]
/
etc
/
x86_dumpfenv.h
1
#ifndef __DUMPFENV_H__
2
#define __DUMPFENV_H__
3
4
#include <stdint.h>
5
6
typedef struct {
7
struct {
8
uint16_t control;
9
uint16_t unused1;
10
11
uint16_t status;
12
uint16_t unused2;
13
14
uint16_t tag;
15
uint16_t unused3;
16
17
uint32_t others[4];
18
} x87;
19
20
uint32_t mxcsr;
21
} myfenv_t;
22
23
void fenv_dump(myfenv_t *envp);
24
void fenv_print(const myfenv_t *envp);
25
26
#endif /* ! __DUMP_FENV_H__ */