OLD | NEW |
1 /************************************************************************* | 1 /************************************************************************* |
2 * | 2 * |
3 * $Id$ | 3 * $Id$ |
4 * | 4 * |
5 * Copyright (C) 2001 Bjorn Reese <breese@users.sourceforge.net> | 5 * Copyright (C) 2001 Bjorn Reese <breese@users.sourceforge.net> |
6 * | 6 * |
7 * Permission to use, copy, modify, and distribute this software for any | 7 * Permission to use, copy, modify, and distribute this software for any |
8 * purpose with or without fee is hereby granted, provided that the above | 8 * purpose with or without fee is hereby granted, provided that the above |
9 * copyright notice and this permission notice appear in all copies. | 9 * copyright notice and this permission notice appear in all copies. |
10 * | 10 * |
(...skipping 28 matching lines...) Expand all Loading... |
39 | 39 |
40 /* | 40 /* |
41 * Return positive infinity. | 41 * Return positive infinity. |
42 */ | 42 */ |
43 TRIO_PUBLIC double trio_pinf TRIO_PROTO((void)); | 43 TRIO_PUBLIC double trio_pinf TRIO_PROTO((void)); |
44 | 44 |
45 /* | 45 /* |
46 * Return negative infinity. | 46 * Return negative infinity. |
47 */ | 47 */ |
48 TRIO_PUBLIC double trio_ninf TRIO_PROTO((void)); | 48 TRIO_PUBLIC double trio_ninf TRIO_PROTO((void)); |
49 | 49 |
50 /* | 50 /* |
51 * Return negative zero. | 51 * Return negative zero. |
52 */ | 52 */ |
53 TRIO_PUBLIC double trio_nzero TRIO_PROTO((TRIO_NOARGS)); | 53 TRIO_PUBLIC double trio_nzero TRIO_PROTO((TRIO_NOARGS)); |
54 | 54 |
55 /* | 55 /* |
56 * If number is a NaN return non-zero, otherwise return zero. | 56 * If number is a NaN return non-zero, otherwise return zero. |
57 */ | 57 */ |
58 TRIO_PUBLIC int trio_isnan TRIO_PROTO((double number)); | 58 TRIO_PUBLIC int trio_isnan TRIO_PROTO((double number)); |
59 | 59 |
(...skipping 15 matching lines...) Expand all Loading... |
75 | 75 |
76 TRIO_PUBLIC int trio_signbit TRIO_PROTO((double number)); | 76 TRIO_PUBLIC int trio_signbit TRIO_PROTO((double number)); |
77 | 77 |
78 TRIO_PUBLIC int trio_fpclassify_and_signbit TRIO_PROTO((double number, int *is_n
egative)); | 78 TRIO_PUBLIC int trio_fpclassify_and_signbit TRIO_PROTO((double number, int *is_n
egative)); |
79 | 79 |
80 #ifdef __cplusplus | 80 #ifdef __cplusplus |
81 } | 81 } |
82 #endif | 82 #endif |
83 | 83 |
84 #endif /* TRIO_NAN_H */ | 84 #endif /* TRIO_NAN_H */ |
OLD | NEW |