mfreadwrite/reader: Add missing allocation check (Coverity).
[wine/zf.git] / dlls / msvcrt / unixlib.h
blobb506151664f166509a1139b71e9bb8c27df43499
1 /*
2 * MSVCRT Unix interface
4 * Copyright 2020 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #ifndef __UNIXLIB_H
22 #define __UNIXLIB_H
24 struct unix_funcs
26 double (CDECL *acosh)(double x);
27 float (CDECL *acoshf)(float x);
28 double (CDECL *asinh)(double x);
29 float (CDECL *asinhf)(float x);
30 double (CDECL *atanh)(double x);
31 float (CDECL *atanhf)(float x);
32 double (CDECL *cbrt)(double x);
33 float (CDECL *cbrtf)(float x);
34 double (CDECL *ceil)(double x);
35 float (CDECL *ceilf)(float x);
36 double (CDECL *cos)(double x);
37 float (CDECL *cosf)(float x);
38 double (CDECL *cosh)(double x);
39 float (CDECL *coshf)(float x);
40 double (CDECL *erf)(double x);
41 double (CDECL *erfc)(double x);
42 float (CDECL *erfcf)(float x);
43 float (CDECL *erff)(float x);
44 double (CDECL *exp)(double x);
45 float (CDECL *expf)(float x);
46 double (CDECL *exp2)(double x);
47 float (CDECL *exp2f)(float x);
48 double (CDECL *expm1)(double x);
49 float (CDECL *expm1f)(float x);
50 double (CDECL *floor)(double x);
51 float (CDECL *floorf)(float x);
52 double (CDECL *fma)(double x, double y, double z);
53 float (CDECL *fmaf)(float x, float y, float z);
54 double (CDECL *fmod)(double x, double y);
55 float (CDECL *fmodf)(float x, float y);
56 double (CDECL *frexp)(double x, int *exp);
57 float (CDECL *frexpf)(float x, int *exp);
58 double (CDECL *hypot)(double x, double y);
59 float (CDECL *hypotf)(float x, float y);
60 double (CDECL *j0)(double num);
61 double (CDECL *j1)(double num);
62 double (CDECL *jn)(int n, double num);
63 double (CDECL *ldexp)(double x, int exp);
64 double (CDECL *lgamma)(double x);
65 float (CDECL *lgammaf)(float x);
66 __int64 (CDECL *llrint)(double x);
67 __int64 (CDECL *llrintf)(float x);
68 __int64 (CDECL *llround)(double x);
69 __int64 (CDECL *llroundf)(float x);
70 double (CDECL *log)(double x);
71 float (CDECL *logf)(float x);
72 double (CDECL *log10)(double x);
73 float (CDECL *log10f)(float x);
74 double (CDECL *log1p)(double x);
75 float (CDECL *log1pf)(float x);
76 double (CDECL *log2)(double x);
77 float (CDECL *log2f)(float x);
78 double (CDECL *logb)(double x);
79 float (CDECL *logbf)(float x);
80 int (CDECL *lrint)(double x);
81 int (CDECL *lrintf)(float x);
82 int (CDECL *lround)(double x);
83 int (CDECL *lroundf)(float x);
84 double (CDECL *modf)(double x, double *iptr);
85 float (CDECL *modff)(float x, float *iptr);
86 double (CDECL *nearbyint)(double num);
87 float (CDECL *nearbyintf)(float num);
88 double (CDECL *nextafter)(double x, double y);
89 float (CDECL *nextafterf)(float x, float y);
90 double (CDECL *nexttoward)(double x, double y);
91 float (CDECL *nexttowardf)(float x, double y);
92 double (CDECL *pow)(double x, double y);
93 float (CDECL *powf)(float x, float y);
94 double (CDECL *remainder)(double x, double y);
95 float (CDECL *remainderf)(float x, float y);
96 double (CDECL *remquo)(double x, double y, int *quo);
97 float (CDECL *remquof)(float x, float y, int *quo);
98 double (CDECL *rint)(double x);
99 float (CDECL *rintf)(float x);
100 double (CDECL *round)(double x);
101 float (CDECL *roundf)(float x);
102 double (CDECL *sin)(double x);
103 float (CDECL *sinf)(float x);
104 double (CDECL *sinh)(double x);
105 float (CDECL *sinhf)(float x);
106 double (CDECL *tan)(double x);
107 float (CDECL *tanf)(float x);
108 double (CDECL *tanh)(double x);
109 float (CDECL *tanhf)(float x);
110 double (CDECL *tgamma)(double x);
111 float (CDECL *tgammaf)(float x);
112 double (CDECL *trunc)(double x);
113 float (CDECL *truncf)(float x);
114 double (CDECL *y0)(double num);
115 double (CDECL *y1)(double num);
116 double (CDECL *yn)(int order, double num);
119 #endif /* __UNIXLIB_H */