ansification: remove _AND

Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
This commit is contained in:
Yaakov Selkowitz
2017-12-03 19:31:41 -06:00
parent 1e39db3062
commit 6783860a2e
517 changed files with 1771 additions and 1773 deletions

View File

@@ -13,8 +13,8 @@ extern int errno;
int
_DEFUN (_chown, (path, owner, group),
const char *path _AND
uid_t owner _AND
const char *path,
uid_t owner,
gid_t group)
{
errno = ENOSYS;

View File

@@ -12,8 +12,8 @@ extern int errno;
int
_DEFUN (_execve, (name, argv, env),
char *name _AND
char **argv _AND
char *name,
char **argv,
char **env)
{
errno = ENOSYS;

View File

@@ -14,7 +14,7 @@ extern int errno;
int
_DEFUN (_fstat, (fildes, st),
int fildes _AND
int fildes,
struct stat *st)
{
errno = ENOSYS;

View File

@@ -16,7 +16,7 @@ struct timeval;
int
_DEFUN (_gettimeofday, (ptimeval, ptimezone),
struct timeval *ptimeval _AND
struct timeval *ptimeval,
void *ptimezone)
{
errno = ENOSYS;

View File

@@ -12,7 +12,7 @@ extern int errno;
int
_DEFUN (_kill, (pid, sig),
int pid _AND
int pid,
int sig)
{
errno = ENOSYS;

View File

@@ -12,7 +12,7 @@ extern int errno;
int
_DEFUN (_link, (existing, new),
char *existing _AND
char *existing,
char *new)
{
errno = ENOSYS;

View File

@@ -12,8 +12,8 @@ extern int errno;
int
_DEFUN (_lseek, (file, ptr, dir),
int file _AND
int ptr _AND
int file,
int ptr,
int dir)
{
errno = ENOSYS;

View File

@@ -12,8 +12,8 @@ extern int errno;
int
_DEFUN (_open, (file, flags, mode),
char *file _AND
int flags _AND
char *file,
int flags,
int mode)
{
errno = ENOSYS;

View File

@@ -12,8 +12,8 @@ extern int errno;
int
_DEFUN (_read, (file, ptr, len),
int file _AND
char *ptr _AND
int file,
char *ptr,
int len)
{
errno = ENOSYS;

View File

@@ -13,8 +13,8 @@ extern int errno;
int
_DEFUN (_readlink, (path, buf, bufsize),
const char *path _AND
char *buf _AND
const char *path,
char *buf,
size_t bufsize)
{
errno = ENOSYS;

View File

@@ -14,7 +14,7 @@ extern int errno;
int
_DEFUN (_stat, (file, st),
const char *file _AND
const char *file,
struct stat *st)
{
errno = ENOSYS;

View File

@@ -12,7 +12,7 @@ extern int errno;
int
_DEFUN (_symlink, (path1, path2),
const char *path1 _AND
const char *path1,
const char *path2)
{
errno = ENOSYS;

View File

@@ -12,8 +12,8 @@ extern int errno;
int
_DEFUN (_write, (file, ptr, len),
int file _AND
char *ptr _AND
int file,
char *ptr,
int len)
{
errno = ENOSYS;