This is the mail archive of the newlib-cvs@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[newlib-cygwin] ansification: remove _NOARGS


https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=e13e191b6052a62701d8fb22c3660df23d3b6ec1

commit e13e191b6052a62701d8fb22c3660df23d3b6ec1
Author: Yaakov Selkowitz <yselkowi@redhat.com>
Date:   Sun Dec 3 20:32:27 2017 -0600

    ansification: remove _NOARGS
    
    Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>

Diff:
---
 libgloss/libnosys/fork.c    | 2 +-
 libgloss/libnosys/getpid.c  | 2 +-
 libgloss/mcore/cmb-inbyte.c | 2 +-
 newlib/libc/include/_ansi.h | 4 +---
 4 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/libgloss/libnosys/fork.c b/libgloss/libnosys/fork.c
index f5795cb..5fbf68b 100644
--- a/libgloss/libnosys/fork.c
+++ b/libgloss/libnosys/fork.c
@@ -12,7 +12,7 @@ extern int errno;
 
 int
 _DEFUN (_fork, (),
-        _NOARGS)
+        void)
 {
   errno = ENOSYS;
   return -1;
diff --git a/libgloss/libnosys/getpid.c b/libgloss/libnosys/getpid.c
index 0ea1923..9ed416c 100644
--- a/libgloss/libnosys/getpid.c
+++ b/libgloss/libnosys/getpid.c
@@ -12,7 +12,7 @@ extern int errno;
 
 int
 _DEFUN (_getpid, (),
-        _NOARGS)
+        void)
 {
   errno = ENOSYS;
   return -1;
diff --git a/libgloss/mcore/cmb-inbyte.c b/libgloss/mcore/cmb-inbyte.c
index 0b0b8f5..839ffe6 100644
--- a/libgloss/mcore/cmb-inbyte.c
+++ b/libgloss/mcore/cmb-inbyte.c
@@ -16,7 +16,7 @@
 
 int
 _DEFUN (inbyte, (),
-	_NOARGS)
+	void)
 
 {
     return -1;
diff --git a/newlib/libc/include/_ansi.h b/newlib/libc/include/_ansi.h
index a09bfac..41623f7 100644
--- a/newlib/libc/include/_ansi.h
+++ b/newlib/libc/include/_ansi.h
@@ -48,7 +48,6 @@
 
 #ifdef _HAVE_STDC
 #define	_PTR		void *
-#define	_NOARGS		void
 #define	_VOLATILE	volatile
 #define	_SIGNED		signed
 #define _VOID void
@@ -64,7 +63,7 @@
 #define _EXFNPTR(name, proto)		(* name) proto
 #endif
 #define	_DEFUN(name, arglist, args)	name(args)
-#define	_DEFUN_VOID(name)		name(_NOARGS)
+#define	_DEFUN_VOID(name)		name(void)
 #define _CAST_VOID (void)
 #ifndef _LONG_DOUBLE
 #define _LONG_DOUBLE long double
@@ -74,7 +73,6 @@
 #endif
 #else	
 #define	_PTR		char *
-#define	_NOARGS
 #define	_VOLATILE
 #define	_SIGNED
 #define _VOID void


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]