]> git.proxmox.com Git - ceph.git/blob - ceph/src/civetweb/src/third_party/duktape-1.3.0/src-separate/duk_replacements.h
bump version to 12.2.12-pve1
[ceph.git] / ceph / src / civetweb / src / third_party / duktape-1.3.0 / src-separate / duk_replacements.h
1 #ifndef DUK_REPLACEMENTS_H_INCLUDED
2 #define DUK_REPLACEMENTS_H_INCLUDED
3
4 #ifdef DUK_USE_REPL_FPCLASSIFY
5 DUK_INTERNAL_DECL int duk_repl_fpclassify(double x);
6 #endif
7
8 #ifdef DUK_USE_REPL_SIGNBIT
9 DUK_INTERNAL_DECL int duk_repl_signbit(double x);
10 #endif
11
12 #ifdef DUK_USE_REPL_ISFINITE
13 DUK_INTERNAL_DECL int duk_repl_isfinite(double x);
14 #endif
15
16 #ifdef DUK_USE_REPL_ISNAN
17 DUK_INTERNAL_DECL int duk_repl_isnan(double x);
18 #endif
19
20 #ifdef DUK_USE_REPL_ISINF
21 DUK_INTERNAL_DECL int duk_repl_isinf(double x);
22 #endif
23
24 #endif /* DUK_REPLACEMENTS_H_INCLUDED */