diff mbox series

[v2,11/17] ansification: remove _VOLATILE, _SIGNED

Message ID 20171207181909.1112-12-yselkowi@redhat.com
State New
Headers show
Series Newlib ANSI-fication | expand

Commit Message

Yaakov Selkowitz Dec. 7, 2017, 6:19 p.m. UTC
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>

---
 newlib/libc/include/_ansi.h | 4 ----
 1 file changed, 4 deletions(-)

-- 
2.15.1
diff mbox series

Patch

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;