Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowi@redhat.com>2017-12-04 06:48:55 +0300
committerYaakov Selkowitz <yselkowi@redhat.com>2018-01-17 20:47:21 +0300
commit44276afe2a0365d655425702205604640829668d (patch)
treeb638ffc96653c14b8877335ec7f4cc4e7189ec54
parent67ee0cac4cfc1a0a5b4f1403584ef8222ee5a110 (diff)
ansification: remove _VOLATILE, _SIGNED
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
-rw-r--r--newlib/libc/include/_ansi.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/newlib/libc/include/_ansi.h b/newlib/libc/include/_ansi.h
index 9c3a04695..d05145b91 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;