~ubuntu-branches/ubuntu/natty/eglibc/natty-security

« back to all changes in this revision

Viewing changes to math/k_rem_pio2l.c

  • Committer: Bazaar Package Importer
  • Author(s): Aurelien Jarno
  • Date: 2009-05-05 09:54:14 UTC
  • Revision ID: james.westby@ubuntu.com-20090505095414-c45qsg9ixjheohru
ImportĀ upstreamĀ versionĀ 2.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <math.h>
 
2
#include <math_private.h>
 
3
#include <stdio.h>
 
4
#include <errno.h>
 
5
 
 
6
int
 
7
__kernel_rem_pio2l (long double *x, long double *y, int e0, int nx, int prec,
 
8
                    const int *ipio2)
 
9
{
 
10
  fputs ("__kernel_rem_pio2l not implemented\n", stderr);
 
11
  __set_errno (ENOSYS);
 
12
  return 0.0;
 
13
}
 
14
 
 
15
stub_warning (__kernel_rem_pio2l)
 
16
#include <stub-tag.h>