mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 10:50:07 +00:00
Update.
* sysdeps/generic/k_sinl.c (__kernel_sinl): Fix functions parameter. * sysdeps/unix/sysv/linux/shm_open.c (freeit): Make static and add unused attribute to shut up gcc warnings. * sysdeps/generic/k_sinl.c: Include math_private for prototypes. * sysdeps/generic/k_tanl.c: Likewise. * sysdeps/generic/k_cosl.c: Likewise. * sysdeps/generic/e_j0l.c: Likewise. * sysdeps/generic/e_j1l.c: Likewise. * sysdeps/generic/e_jnl.c: Likewise. * sysdeps/generic/e_lgammal_r.c: Likewise.
This commit is contained in:
parent
5c80f57cfc
commit
b6e2071240
14
ChangeLog
14
ChangeLog
@ -1,5 +1,19 @@
|
|||||||
2000-12-17 Andreas Jaeger <aj@suse.de>
|
2000-12-17 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
* sysdeps/generic/k_sinl.c (__kernel_sinl): Fix functions
|
||||||
|
parameter.
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/shm_open.c (freeit): Make static and add
|
||||||
|
unused attribute to shut up gcc warnings.
|
||||||
|
|
||||||
|
* sysdeps/generic/k_sinl.c: Include math_private for prototypes.
|
||||||
|
* sysdeps/generic/k_tanl.c: Likewise.
|
||||||
|
* sysdeps/generic/k_cosl.c: Likewise.
|
||||||
|
* sysdeps/generic/e_j0l.c: Likewise.
|
||||||
|
* sysdeps/generic/e_j1l.c: Likewise.
|
||||||
|
* sysdeps/generic/e_jnl.c: Likewise.
|
||||||
|
* sysdeps/generic/e_lgammal_r.c: Likewise.
|
||||||
|
|
||||||
* elf/vismain.c: Move prototypes for functions in vismod*.c to
|
* elf/vismain.c: Move prototypes for functions in vismod*.c to
|
||||||
vismod.h.
|
vismod.h.
|
||||||
* elf/vismod.h: New file.
|
* elf/vismod.h: New file.
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2000-12-17 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
* internals.h: Add prototypes for testandset and
|
||||||
|
__compare_and_swap to shut up gcc warnings.
|
||||||
|
|
||||||
2000-12-06 Wolfram Gloger <wg@malloc.de>
|
2000-12-06 Wolfram Gloger <wg@malloc.de>
|
||||||
|
|
||||||
* join.c (pthread_detach): Allow case where the thread has already
|
* join.c (pthread_detach): Allow case where the thread has already
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#include "math_private.h"
|
||||||
|
|
||||||
long double
|
long double
|
||||||
__ieee754_j0l (long double x)
|
__ieee754_j0l (long double x)
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#include "math_private.h"
|
||||||
|
|
||||||
long double
|
long double
|
||||||
__ieee754_j1l (long double x)
|
__ieee754_j1l (long double x)
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#include "math_private.h"
|
||||||
|
|
||||||
long double
|
long double
|
||||||
__ieee754_jnl (int n, long double x)
|
__ieee754_jnl (int n, long double x)
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#include "math_private.h"
|
||||||
|
|
||||||
long double
|
long double
|
||||||
__ieee754_lgammal_r (long double x, int *signgamp)
|
__ieee754_lgammal_r (long double x, int *signgamp)
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#include "math_private.h"
|
||||||
|
|
||||||
long double
|
long double
|
||||||
__kernel_cosl (long double x, long double y)
|
__kernel_cosl (long double x, long double y)
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#include "math_private.h"
|
||||||
|
|
||||||
long double
|
long double
|
||||||
__kernel_sinl (long double x, long double y)
|
__kernel_sinl (long double x, long double y, int iy)
|
||||||
{
|
{
|
||||||
fputs ("__kernel_sinl not implemented\n", stderr);
|
fputs ("__kernel_sinl not implemented\n", stderr);
|
||||||
__set_errno (ENOSYS);
|
__set_errno (ENOSYS);
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#include "math_private.h"
|
||||||
|
|
||||||
long double
|
long double
|
||||||
__kernel_tanl (long double x, long double y, int iy)
|
__kernel_tanl (long double x, long double y, int iy)
|
||||||
|
@ -223,7 +223,7 @@ shm_unlink (const char *name)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
static void __attribute__ ((unused))
|
||||||
freeit (void)
|
freeit (void)
|
||||||
{
|
{
|
||||||
if (mountpoint.dir != defaultdir)
|
if (mountpoint.dir != defaultdir)
|
||||||
|
Loading…
Reference in New Issue
Block a user