|
15 | 15 | * Floating-point to Unsigned Fixed-point Converts with Truncation |
16 | 16 | * |
17 | 17 | * External Interfaces: |
18 | | - * dbl_to_dbl_fcnvfut(srcptr,nullptr,dstptr,status) |
19 | | - * dbl_to_sgl_fcnvfut(srcptr,nullptr,dstptr,status) |
20 | | - * sgl_to_dbl_fcnvfut(srcptr,nullptr,dstptr,status) |
21 | | - * sgl_to_sgl_fcnvfut(srcptr,nullptr,dstptr,status) |
| 18 | + * dbl_to_dbl_fcnvfut(srcptr,_nullptr,dstptr,status) |
| 19 | + * dbl_to_sgl_fcnvfut(srcptr,_nullptr,dstptr,status) |
| 20 | + * sgl_to_dbl_fcnvfut(srcptr,_nullptr,dstptr,status) |
| 21 | + * sgl_to_sgl_fcnvfut(srcptr,_nullptr,dstptr,status) |
22 | 22 | * |
23 | 23 | * Internal Interfaces: |
24 | 24 | * |
|
44 | 44 | */ |
45 | 45 | /*ARGSUSED*/ |
46 | 46 | int |
47 | | -sgl_to_sgl_fcnvfut (sgl_floating_point * srcptr, unsigned int *nullptr, |
| 47 | +sgl_to_sgl_fcnvfut (sgl_floating_point * srcptr, unsigned int *_nullptr, |
48 | 48 | unsigned int *dstptr, unsigned int *status) |
49 | 49 | { |
50 | 50 | register unsigned int src, result; |
@@ -113,7 +113,7 @@ sgl_to_sgl_fcnvfut (sgl_floating_point * srcptr, unsigned int *nullptr, |
113 | 113 | */ |
114 | 114 | /*ARGSUSED*/ |
115 | 115 | int |
116 | | -sgl_to_dbl_fcnvfut (sgl_floating_point * srcptr, unsigned int *nullptr, |
| 116 | +sgl_to_dbl_fcnvfut (sgl_floating_point * srcptr, unsigned int *_nullptr, |
117 | 117 | dbl_unsigned * dstptr, unsigned int *status) |
118 | 118 | { |
119 | 119 | register int src_exponent; |
@@ -183,7 +183,7 @@ sgl_to_dbl_fcnvfut (sgl_floating_point * srcptr, unsigned int *nullptr, |
183 | 183 | */ |
184 | 184 | /*ARGSUSED*/ |
185 | 185 | int |
186 | | -dbl_to_sgl_fcnvfut (dbl_floating_point * srcptr, unsigned int *nullptr, |
| 186 | +dbl_to_sgl_fcnvfut (dbl_floating_point * srcptr, unsigned int *_nullptr, |
187 | 187 | unsigned int *dstptr, unsigned int *status) |
188 | 188 | { |
189 | 189 | register unsigned int srcp1, srcp2, result; |
@@ -252,7 +252,7 @@ dbl_to_sgl_fcnvfut (dbl_floating_point * srcptr, unsigned int *nullptr, |
252 | 252 | */ |
253 | 253 | /*ARGSUSED*/ |
254 | 254 | int |
255 | | -dbl_to_dbl_fcnvfut (dbl_floating_point * srcptr, unsigned int *nullptr, |
| 255 | +dbl_to_dbl_fcnvfut (dbl_floating_point * srcptr, unsigned int *_nullptr, |
256 | 256 | dbl_unsigned * dstptr, unsigned int *status) |
257 | 257 | { |
258 | 258 | register int src_exponent; |
|
0 commit comments