aboutsummaryrefslogtreecommitdiff
path: root/libgloss/mcore
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowi@redhat.com>2017-12-03 19:31:41 -0600
committerYaakov Selkowitz <yselkowi@redhat.com>2018-01-17 11:47:05 -0600
commit6783860a2e4e4183c073f62e4bb938cea0e096c3 (patch)
treeab2289b4902fdfc7266edcb8bcfbd8f5601948bd /libgloss/mcore
parent1e39db3062f941778e748f833e1f88dd5c7399a3 (diff)
downloadnewlib-6783860a2e4e4183c073f62e4bb938cea0e096c3.zip
newlib-6783860a2e4e4183c073f62e4bb938cea0e096c3.tar.gz
newlib-6783860a2e4e4183c073f62e4bb938cea0e096c3.tar.bz2
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 0205464..6a2323a 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 43a3597..8883c8e 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 0f236fe..423e11e 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 a9e9959..6b816e8 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 499426d..8f39478 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 401a6b5..d07042a 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 7f39fd1..189ea62 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;