~xnox/ubuntu/trusty/gcc-arm-linux-androideabi/dima

« back to all changes in this revision

Viewing changes to android/bionic/libm/src/w_dremf.c

  • Committer: Package Import Robot
  • Author(s): Dmitrijs Ledkovs
  • Date: 2013-07-05 10:12:24 UTC
  • Revision ID: package-import@ubuntu.com-20130705101224-6qo3e8jbz8p31aa1
Tags: upstream-0.20130705.1
ImportĀ upstreamĀ versionĀ 0.20130705.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * dremf() wrapper for remainderf().
 
3
 *
 
4
 * Written by J.T. Conklin, <jtc@wimsey.com>
 
5
 * Placed into the Public Domain, 1994.
 
6
 */
 
7
/* $FreeBSD: src/lib/msun/src/w_dremf.c,v 1.3 2004/07/28 05:53:18 kan Exp $ */
 
8
 
 
9
#include "math.h"
 
10
#include "math_private.h"
 
11
 
 
12
float
 
13
dremf(float x, float y)
 
14
{
 
15
        return remainderf(x, y);
 
16
}