[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Exporting libc patches
From: |
Samuel Thibault |
Subject: |
Re: Exporting libc patches |
Date: |
Mon, 6 Jun 2011 14:49:11 +0200 |
User-agent: |
Mutt/1.5.12-2006-07-14 |
Ludovic Courtès, le Mon 06 Jun 2011 14:39:39 +0200, a écrit :
> @@ -79,6 +79,8 @@
> extern int __dup (int __fd);
> extern int __dup2 (int __fd, int __fd2);
> libc_hidden_proto (__dup2)
> +extern int __dup3 (int __fd, int __fd2, int __flags);
> +libc_hidden_proto (__dup3)
It seems Ulrich added a dup3 hiddenproto in the meanwhile. I guess
+libc_hidden_def (dup3)
needs to be added to our patch, as is done in commit 94b7cc37
Samuel