1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00

* sysdeps/hppa/bits/setjmp.h: Add _BITS_SETJMP_H preprocessor

protection and allow pthread.h to include bits/setjmp.h as well as
	setjmp.h.
	* sysdeps/m68k/bits/setjmp.h: Likewise.
	* sysdeps/s390/bits/setjmp.h: Make sure only setjmp.h or pthread.h
	are allow to include bits/setjmp.h.
	* sysdeps/mips/bits/setjmp.h (_JMPBUF_UNWINDS): Cast rhs to match lhs
	cast of address.
	* sysdeps/sh/bits/setjmp.h: Likewise.

2005-11-12  Jim Meyering  <jim@meyering.net>

	* sysdeps/unix/opendir.c (__alloc_dir): Declare STATP parameter
	to be pointer to const.
	* include/dirent.h: Update decl.
This commit is contained in:
Roland McGrath
2005-12-06 01:38:34 +00:00
parent a6ba1c33ef
commit 2ce7e666e9
8 changed files with 36 additions and 6 deletions

View File

@@ -139,7 +139,7 @@ weak_alias (__opendir, opendir)
DIR *
internal_function
__alloc_dir (int fd, bool close_fd, struct stat64 *statp)
__alloc_dir (int fd, bool close_fd, const struct stat64 *statp)
{
if (__builtin_expect (__fcntl (fd, F_SETFD, FD_CLOEXEC), 0) < 0)
goto lose;