You've already forked 2ship2harkinian-Android
mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-03-10 11:20:47 -07:00
24 lines
300 B
C
24 lines
300 B
C
#ifndef PR_GUINT_H
|
|
#define PR_GUINT_H
|
|
|
|
#include "ultratypes.h"
|
|
|
|
typedef union {
|
|
f64 d;
|
|
struct {
|
|
u32 hi;
|
|
u32 lo;
|
|
} word;
|
|
} du;
|
|
|
|
typedef union {
|
|
u32 i;
|
|
f32 f;
|
|
} fu;
|
|
|
|
#define ROUND(x) (s32)(((x) >= 0.0) ? ((x) + 0.5) : ((x) - 0.5))
|
|
|
|
extern f32 __libm_qnan_f;
|
|
|
|
#endif
|