Ignore:
File:
1 edited

Legend:

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

    r750636a r00acd66  
    2727 */
    2828
    29 /** @addtogroup softfloat
     29 /** @addtogroup softfloat     
    3030 * @{
    3131 */
     
    3636#define __DIV_H__
    3737
    38 extern float32 divFloat32(float32, float32);
    39 extern float64 divFloat64(float64, float64);
     38float32 divFloat32(float32 a, float32 b);
     39float64 divFloat64(float64 a, float64 b);
    4040
    41 extern uint64_t divFloat64estim(uint64_t, uint64_t);
     41uint64_t divFloat64estim(uint64_t a, uint64_t b);
    4242
    4343#endif
    4444
    45 /** @}
     45
     46 /** @}
    4647 */
     48
Note: See TracChangeset for help on using the changeset viewer.