From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/10029 Path: news.gmane.org!not-for-mail From: Bobby Bingham Newsgroups: gmane.linux.lib.musl.general Subject: [PATCH 1/3] x32: remove unnecessary undefs of syscall numbers Date: Wed, 11 May 2016 23:53:27 -0500 Message-ID: <1463028809-9763-1-git-send-email-koorogi@koorogi.info> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1463028838 5992 80.91.229.3 (12 May 2016 04:53:58 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 12 May 2016 04:53:58 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-10042-gllmg-musl=m.gmane.org@lists.openwall.com Thu May 12 06:53:58 2016 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1b0idI-0001FE-VQ for gllmg-musl@m.gmane.org; Thu, 12 May 2016 06:53:57 +0200 Original-Received: (qmail 11781 invoked by uid 550); 12 May 2016 04:53:54 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 11731 invoked from network); 12 May 2016 04:53:47 -0000 X-Mailer: git-send-email 2.8.2 Xref: news.gmane.org gmane.linux.lib.musl.general:10029 Archived-At: --- arch/x32/bits/syscall.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/arch/x32/bits/syscall.h b/arch/x32/bits/syscall.h index bd5ab3b..c7c15ab 100644 --- a/arch/x32/bits/syscall.h +++ b/arch/x32/bits/syscall.h @@ -66,7 +66,6 @@ #define __NR_fdatasync (__X32_SYSCALL_BIT + 75) #define __NR_truncate (__X32_SYSCALL_BIT + 76) #define __NR_ftruncate (__X32_SYSCALL_BIT + 77) -#define __NR_getdents (__X32_SYSCALL_BIT + 78) #define __NR_getcwd (__X32_SYSCALL_BIT + 79) #define __NR_chdir (__X32_SYSCALL_BIT + 80) #define __NR_fchdir (__X32_SYSCALL_BIT + 81) @@ -317,10 +316,6 @@ #define __NR_io_submit (__X32_SYSCALL_BIT + 544) #define __NR_execveat (__X32_SYSCALL_BIT + 545) -#undef __NR_fstatat -#undef __NR_pread -#undef __NR_pwrite -#undef __NR_getdents #define __NR_fstatat __NR_newfstatat #define __NR_pread __NR_pread64 #define __NR_pwrite __NR_pwrite64 @@ -400,7 +395,6 @@ #define SYS_fdatasync __NR_fdatasync #define SYS_truncate __NR_truncate #define SYS_ftruncate __NR_ftruncate -#define SYS_getdents __NR_getdents #define SYS_getcwd __NR_getcwd #define SYS_chdir __NR_chdir #define SYS_fchdir __NR_fchdir @@ -652,10 +646,6 @@ #define SYS_io_submit __NR_io_submit #define SYS_execveat __NR_execveat -#undef SYS_fstatat -#undef SYS_pread -#undef SYS_pwrite -#undef SYS_getdents #define SYS_fstatat SYS_newfstatat #define SYS_pread SYS_pread64 #define SYS_pwrite SYS_pwrite64 -- 2.8.2