~ubuntu-branches/ubuntu/raring/avr-libc/raring-proposed

« back to all changes in this revision

Viewing changes to libm/fplib/acos.S

  • Committer: Bazaar Package Importer
  • Author(s): Hakan Ardo
  • Date: 2011-07-14 11:15:32 UTC
  • mfrom: (1.1.10 upstream) (4.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20110714111532-e83i3vqdowgxw8lv
Tags: 1:1.7.1-2
include/util/delay.h.in: Add math.h to list of includes (closes:
#633822)

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28
28
   POSSIBILITY OF SUCH DAMAGE. */
29
29
 
30
 
/* $Id: acos.S,v 1.5 2007/01/14 15:05:14 dmix Exp $ */
 
30
/* $Id: acos.S 2191 2010-11-05 13:45:57Z arcanum $ */
31
31
 
32
32
/* float acos (float x);
33
33
     The acos() function calculates the arc cosine of x; that is the value
34
34
     whose cosine is x.
35
35
 */
 
36
 
 
37
 
 
38
#if !defined(__AVR_TINY__)
 
39
 
36
40
#include "fp32def.h"
37
41
#include "asmdef.h"
38
42
 
60
64
  ; round
61
65
1:      rjmp    _U(__fp_round)
62
66
ENDFUNC
 
67
 
 
68
#endif /* !defined(__AVR_TINY__) */