Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/softfloat/include/mul.h

    r750636a r00acd66  
    2727 */
    2828
    29 /** @addtogroup softfloat
     29 /** @addtogroup softfloat     
    3030 * @{
    3131 */
     
    3636#define __MUL_H__
    3737
    38 extern float32 mulFloat32(float32, float32);
    39 extern float64 mulFloat64(float64, float64);
     38float32 mulFloat32(float32 a, float32 b);
    4039
    41 extern void mul64integers(uint64_t, uint64_t, uint64_t *, uint64_t *);
     40float64 mulFloat64(float64 a, float64 b);
     41
     42void mul64integers(uint64_t a,uint64_t b, uint64_t *lo, uint64_t *hi);
    4243
    4344#endif
    4445
    45 /** @}
     46
     47 /** @}
    4648 */
     49
Note: See TracChangeset for help on using the changeset viewer.