Ignore:
Timestamp:
2014-03-06T02:45:53Z (10 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c60e9ee
Parents:
47f7390f
Message:

implement generic sine and cosine functions using Taylor series approximation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/math/arch/amd64/include/libarch/math.h

    r47f7390f rba11ebb  
    3636#define LIBMATH_amd64_MATH_H_
    3737
     38#include <mod.h>
     39
     40static inline double fmod(double dividend, double divisor)
     41{
     42        return double_mod(dividend, divisor);
     43}
     44
    3845extern double sin(double);
    3946extern double cos(double);
Note: See TracChangeset for help on using the changeset viewer.