From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 94339 invoked by alias); 17 Jan 2018 17:49:52 -0000 Mailing-List: contact newlib-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: newlib-cvs-owner@sourceware.org Received: (qmail 93737 invoked by uid 9642); 17 Jan 2018 17:49:51 -0000 Date: Wed, 17 Jan 2018 17:49:00 -0000 Message-ID: <20180117174951.93735.qmail@sourceware.org> Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Yaakov Selkowitz To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] ansification: remove _VOLATILE, _SIGNED X-Act-Checkin: newlib-cygwin X-Git-Author: Yaakov Selkowitz X-Git-Refname: refs/heads/master X-Git-Oldrev: 67ee0cac4cfc1a0a5b4f1403584ef8222ee5a110 X-Git-Newrev: 44276afe2a0365d655425702205604640829668d X-SW-Source: 2018-q1/txt/msg00014.txt.bz2 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=44276afe2a0365d655425702205604640829668d commit 44276afe2a0365d655425702205604640829668d Author: Yaakov Selkowitz Date: Sun Dec 3 21:48:55 2017 -0600 ansification: remove _VOLATILE, _SIGNED Signed-off-by: Yaakov Selkowitz Diff: --- newlib/libc/include/_ansi.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/newlib/libc/include/_ansi.h b/newlib/libc/include/_ansi.h index 9c3a046..d05145b 100644 --- a/newlib/libc/include/_ansi.h +++ b/newlib/libc/include/_ansi.h @@ -47,8 +47,6 @@ #endif #ifdef _HAVE_STDC -#define _VOLATILE volatile -#define _SIGNED signed #ifdef __CYGWIN__ #define _EXFUN_NOTHROW(name, proto) __cdecl name proto _NOTHROW #define _EXFUN(name, proto) __cdecl name proto @@ -65,8 +63,6 @@ #define _LONG_DOUBLE long double #endif #else -#define _VOLATILE -#define _SIGNED #define _EXFUN(name, proto) name() #define _EXFUN_NOTHROW(name, proto) name() #define _DEFUN(name, arglist, args) name arglist args;