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 04:31:41 +0300
committerYaakov Selkowitz <yselkowi@redhat.com>2018-01-17 20:47:05 +0300
commit6783860a2e4e4183c073f62e4bb938cea0e096c3 (patch)
treeab2289b4902fdfc7266edcb8bcfbd8f5601948bd /libgloss/mcore
parent1e39db3062f941778e748f833e1f88dd5c7399a3 (diff)
ansification: remove _AND
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'libgloss/mcore')
-rw-r--r--libgloss/mcore/fstat.c2
-rw-r--r--libgloss/mcore/kill.c2
-rw-r--r--libgloss/mcore/lseek.c4
-rw-r--r--libgloss/mcore/open.c4
-rw-r--r--libgloss/mcore/read.c4
-rw-r--r--libgloss/mcore/stat.c2
-rw-r--r--libgloss/mcore/write.c4
7 files changed, 11 insertions, 11 deletions
diff --git a/libgloss/mcore/fstat.c b/libgloss/mcore/fstat.c
index 02054641b..6a2323a6e 100644
--- a/libgloss/mcore/fstat.c
+++ b/libgloss/mcore/fstat.c
@@ -20,7 +20,7 @@
*/
int
_DEFUN (_fstat, (fd, buf),
- int fd _AND
+ int fd,
struct stat *buf)
{
buf->st_mode = S_IFCHR; /* Always pretend to be a tty */
diff --git a/libgloss/mcore/kill.c b/libgloss/mcore/kill.c
index 43a359760..8883c8ecd 100644
--- a/libgloss/mcore/kill.c
+++ b/libgloss/mcore/kill.c
@@ -19,7 +19,7 @@
*/
int
_DEFUN (_kill, (pid, sig),
- int pid _AND
+ int pid,
int sig)
{
if(pid == __MYPID)
diff --git a/libgloss/mcore/lseek.c b/libgloss/mcore/lseek.c
index 0f236fe64..423e11e55 100644
--- a/libgloss/mcore/lseek.c
+++ b/libgloss/mcore/lseek.c
@@ -21,8 +21,8 @@
*/
off_t
_DEFUN (_lseek, (fd, offset, whence),
- int fd _AND
- off_t offset _AND
+ int fd,
+ off_t offset,
int whence)
{
errno = ESPIPE;
diff --git a/libgloss/mcore/open.c b/libgloss/mcore/open.c
index a9e99597f..6b816e891 100644
--- a/libgloss/mcore/open.c
+++ b/libgloss/mcore/open.c
@@ -21,8 +21,8 @@
*/
int
_DEFUN (_open, (buf, flags, mode),
- const char *buf _AND
- int flags _AND
+ const char *buf,
+ int flags,
int mode)
{
errno = EIO;
diff --git a/libgloss/mcore/read.c b/libgloss/mcore/read.c
index 499426d1b..8f394780c 100644
--- a/libgloss/mcore/read.c
+++ b/libgloss/mcore/read.c
@@ -22,8 +22,8 @@ extern char _DEFUN_VOID (inbyte);
*/
int
_DEFUN (_read, (fd, buf, nbytes),
- int fd _AND
- char *buf _AND
+ int fd,
+ char *buf,
int nbytes)
{
int i = 0;
diff --git a/libgloss/mcore/stat.c b/libgloss/mcore/stat.c
index 401a6b50d..d07042a51 100644
--- a/libgloss/mcore/stat.c
+++ b/libgloss/mcore/stat.c
@@ -21,7 +21,7 @@
*/
int
_DEFUN (_stat, (path, buf),
- const char *path _AND
+ const char *path,
struct stat *buf)
{
errno = EIO;
diff --git a/libgloss/mcore/write.c b/libgloss/mcore/write.c
index 7f39fd1bb..189ea6222 100644
--- a/libgloss/mcore/write.c
+++ b/libgloss/mcore/write.c
@@ -23,8 +23,8 @@ extern int _EXFUN (outbyte, (char x));
*/
int
_DEFUN (_write, (fd, buf, nbytes),
- int fd _AND
- char *buf _AND
+ int fd,
+ char *buf,
int nbytes)
{
int i;