Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix hurd build
	* sysdeps/mach/hurd/openat.c (__openat): Add missing ellipsis.
	* resolv/gai_sigqueue.c (__gai_sigqueue): Add missing internal_function
	qualifier.
	* /rt/aio_sigqueue.c (__aio_sigqueue): Add missing attribute_hidden
	internal_function qualifiers.
  • Loading branch information
Samuel Thibault committed Mar 16, 2016
1 parent b4f518e commit 35fbb34
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
8 changes: 8 additions & 0 deletions ChangeLog
@@ -1,3 +1,11 @@
2016-03-16 Samuel Thibault <samuel.thibault@ens-lyon.org>

* sysdeps/mach/hurd/openat.c (__openat): Add missing ellipsis.
* resolv/gai_sigqueue.c (__gai_sigqueue): Add missing internal_function
qualifier.
* /rt/aio_sigqueue.c (__aio_sigqueue): Add missing attribute_hidden
internal_function qualifiers.

2016-03-15 Carlos O'Donell <carlos@redhat.com>

* catgets/tst-catgets.c (do_bz17905): Mark result unused.
Expand Down
1 change: 1 addition & 0 deletions resolv/gai_sigqueue.c
Expand Up @@ -22,6 +22,7 @@
#include <gai_misc.h>

int
internal_function
__gai_sigqueue (int sig, const union sigval val, pid_t caller_pid)
{
__set_errno (ENOSYS);
Expand Down
1 change: 1 addition & 0 deletions rt/aio_sigqueue.c
Expand Up @@ -22,6 +22,7 @@
#include <aio_misc.h>

int
attribute_hidden internal_function
__aio_sigqueue (int sig, const union sigval val, pid_t caller_pid)
{
__set_errno (ENOSYS);
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/mach/hurd/openat.c
Expand Up @@ -29,7 +29,7 @@
the directory associated with FD. If O_CREAT or O_TMPFILE is in OFLAG, a
third argument is the file protection. */
int
__openat (int fd, const char *file, int oflag)
__openat (int fd, const char *file, int oflag, ...)
{
mode_t mode;
io_t port;
Expand Down

0 comments on commit 35fbb34

Please sign in to comment.