* 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:
Andreas Jaeger 2000-12-17 18:12:07 +00:00
parent 5c80f57cfc
commit b6e2071240
10 changed files with 28 additions and 2 deletions

View File

@ -1,5 +1,19 @@
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
vismod.h.
* elf/vismod.h: New file.

View 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>
* join.c (pthread_detach): Allow case where the thread has already

View File

@ -1,6 +1,7 @@
#include <math.h>
#include <stdio.h>
#include <errno.h>
#include "math_private.h"
long double
__ieee754_j0l (long double x)

View File

@ -1,6 +1,7 @@
#include <math.h>
#include <stdio.h>
#include <errno.h>
#include "math_private.h"
long double
__ieee754_j1l (long double x)

View File

@ -1,6 +1,7 @@
#include <math.h>
#include <stdio.h>
#include <errno.h>
#include "math_private.h"
long double
__ieee754_jnl (int n, long double x)

View File

@ -1,6 +1,7 @@
#include <math.h>
#include <stdio.h>
#include <errno.h>
#include "math_private.h"
long double
__ieee754_lgammal_r (long double x, int *signgamp)

View File

@ -1,6 +1,7 @@
#include <math.h>
#include <stdio.h>
#include <errno.h>
#include "math_private.h"
long double
__kernel_cosl (long double x, long double y)

View File

@ -1,9 +1,10 @@
#include <math.h>
#include <stdio.h>
#include <errno.h>
#include "math_private.h"
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);
__set_errno (ENOSYS);

View File

@ -1,6 +1,7 @@
#include <math.h>
#include <stdio.h>
#include <errno.h>
#include "math_private.h"
long double
__kernel_tanl (long double x, long double y, int iy)

View File

@ -223,7 +223,7 @@ shm_unlink (const char *name)
}
void
static void __attribute__ ((unused))
freeit (void)
{
if (mountpoint.dir != defaultdir)