From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17240 invoked by alias); 21 Feb 2013 01:01:29 -0000 Received: (qmail 17232 invoked by uid 22791); 21 Feb 2013 01:01:28 -0000 X-SWARE-Spam-Status: No, hits=-4.5 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,KHOP_RCVD_TRUST,KHOP_SPAMHAUS_DROP,RCVD_IN_DNSWL_LOW,RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org Received: from mail-ve0-f179.google.com (HELO mail-ve0-f179.google.com) (209.85.128.179) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 21 Feb 2013 01:01:14 +0000 Received: by mail-ve0-f179.google.com with SMTP id da11so7343631veb.24 for ; Wed, 20 Feb 2013 17:01:14 -0800 (PST) X-Received: by 10.220.106.133 with SMTP id x5mr28241263vco.61.1361408473894; Wed, 20 Feb 2013 17:01:13 -0800 (PST) Received: from anchor.com (50-194-63-110-static.hfc.comcastbusiness.net. [50.194.63.110]) by mx.google.com with ESMTPS id e8sm70398036vdt.7.2013.02.20.17.01.11 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 20 Feb 2013 17:01:12 -0800 (PST) From: Richard Henderson To: libc-ports@sourceware.org Subject: [COMMITED 1/2] alpha: Include errno.h in sysdep.h Date: Thu, 21 Feb 2013 01:01:00 -0000 Message-Id: <1361408440-19708-1-git-send-email-rth@twiddle.net> X-IsSubscribed: yes Mailing-List: contact libc-ports-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: libc-ports-owner@sourceware.org X-SW-Source: 2013-02/txt/msg00059.txt.bz2 Recent changes in malloc-sysdep.h exposed this error, the symptom being __set_errno was not defined early enough. --- ports/ChangeLog.alpha | 4 ++++ ports/sysdeps/unix/alpha/sysdep.h | 3 +++ 2 files changed, 7 insertions(+) diff --git a/ports/ChangeLog.alpha b/ports/ChangeLog.alpha index 0ac8add..9cd2076 100644 --- a/ports/ChangeLog.alpha +++ b/ports/ChangeLog.alpha @@ -1,3 +1,7 @@ +2013-02-20 Richard Henderson + + * sysdeps/unix/alpha/sysdep.h: Include . + 2013-02-18 Siddhesh Poyarekar * sysdeps/unix/sysv/linux/alpha/nptl/libc.abilist: Add diff --git a/ports/sysdeps/unix/alpha/sysdep.h b/ports/sysdeps/unix/alpha/sysdep.h index 3b71a5e..d20bcd6 100644 --- a/ports/sysdeps/unix/alpha/sysdep.h +++ b/ports/sysdeps/unix/alpha/sysdep.h @@ -161,6 +161,9 @@ __LABEL(name) \ #else /* !ASSEMBLER */ +/* In order to get __set_errno() definition in INLINE_SYSCALL. */ +#include + /* ??? Linux needs to be able to override INLINE_SYSCALL for one particular special case. Make this easy. */ -- 1.8.1.2