Commit d0fcdfb2 authored by Nils Goroll's avatar Nils Goroll

remove whitespace - no planking

parent 823498d2
...@@ -231,9 +231,9 @@ extern int creatl(const char *, mode_t); ...@@ -231,9 +231,9 @@ extern int creatl(const char *, mode_t);
extern int statl(const char *, struct stat *); extern int statl(const char *, struct stat *);
extern int linkl(const char *, const char *); extern int linkl(const char *, const char *);
extern int unlinkl(const char *); extern int unlinkl(const char *);
extern int chownl(const char *, uid_t , gid_t); extern int chownl(const char *, uid_t, gid_t);
extern int chmodl(const char *, mode_t); extern int chmodl(const char *, mode_t);
extern int mknodl(const char *, mode_t , dev_t); extern int mknodl(const char *, mode_t, dev_t);
extern int mkfifol(const char *, mode_t); extern int mkfifol(const char *, mode_t);
extern int rmdirl(const char *); extern int rmdirl(const char *);
extern int mkdirl(const char *, mode_t); extern int mkdirl(const char *, mode_t);
...@@ -245,40 +245,40 @@ extern int utimel(const char *, const struct utimbuf *); ...@@ -245,40 +245,40 @@ extern int utimel(const char *, const struct utimbuf *);
/* at funcs */ /* at funcs */
#if defined(__EXTENSIONS__) || !defined(__XOPEN_OR_POSIX) || \ #if defined(__EXTENSIONS__) || !defined(__XOPEN_OR_POSIX) || \
defined(_ATFILE_SOURCE) defined(_ATFILE_SOURCE)
extern int openatl(int , const char *, int, ...); extern int openatl(int, const char *, int, ...);
#ifdef HAVE_ATTROPEN #ifdef HAVE_ATTROPEN
extern int attropenl(const char *, const char *, int , ...); extern int attropenl(const char *, const char *, int, ...);
#endif #endif
extern int fstatatl(int, const char *, struct stat *, int); extern int fstatatl(int, const char *, struct stat *, int);
#if defined(HAVE_LINKAT) #if defined(HAVE_LINKAT)
extern int linkatl(int , const char *, int , const char *, int); extern int linkatl(int, const char *, int, const char *, int);
#endif #endif
extern int unlinkatl(int , const char *, int); extern int unlinkatl(int, const char *, int);
#if defined(HAVE_SYMLINKAT) #if defined(HAVE_SYMLINKAT)
extern int symlinkatl(const char *, int , const char *); extern int symlinkatl(const char *, int, const char *);
#endif #endif
#if defined(HAVE_READLINKAT) #if defined(HAVE_READLINKAT)
extern int readlinkatl(int , const char *, char *, size_t); extern int readlinkatl(int, const char *, char *, size_t);
#endif #endif
extern int fchownatl(int , const char *, uid_t , gid_t , int); extern int fchownatl(int, const char *, uid_t, gid_t, int);
#if defined(HAVE_MKNODAT) #if defined(HAVE_MKNODAT)
extern int mknodatl(int , const char *, mode_t , dev_t); extern int mknodatl(int, const char *, mode_t, dev_t);
#endif #endif
#if defined(HAVE_MKFIFOAT) #if defined(HAVE_MKFIFOAT)
extern int mkfifoatl(int , const char *, mode_t); extern int mkfifoatl(int, const char *, mode_t);
#endif #endif
extern int rmdiratl(int , const char *); extern int rmdiratl(int, const char *);
#if defined(HAVE_MKDIRAT) #if defined(HAVE_MKDIRAT)
extern int mkdiratl(int , const char *, mode_t); extern int mkdiratl(int, const char *, mode_t);
#endif #endif
extern int renameatl(int , const char *, int , const char *); extern int renameatl(int, const char *, int, const char *);
#endif #endif
/* times at */ /* times at */
#if defined(__EXTENSIONS__) || \ #if defined(__EXTENSIONS__) || \
(!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX)) (!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX))
/* || defined(_XPG7) */ /* || defined(_XPG7) */
extern int futimesatl(int , const char *, const struct timeval *); extern int futimesatl(int, const char *, const struct timeval *);
extern int utimensatl(int, const char *, const struct timespec *, int); extern int utimensatl(int, const char *, const struct timespec *, int);
#endif #endif
...@@ -287,7 +287,7 @@ extern int utimensatl(int, const char *, const struct timespec *, int); ...@@ -287,7 +287,7 @@ extern int utimensatl(int, const char *, const struct timespec *, int);
extern int lstatl(const char *, struct stat *); extern int lstatl(const char *, struct stat *);
extern int symlinkl(const char *, const char *); extern int symlinkl(const char *, const char *);
extern int readlinkl(const char *, char *, size_t); extern int readlinkl(const char *, char *, size_t);
extern int lchownl(const char *, uid_t , gid_t); extern int lchownl(const char *, uid_t, gid_t);
#endif #endif
/* mkstemp */ /* mkstemp */
...@@ -298,7 +298,7 @@ extern int mkstempsl(char *, int); ...@@ -298,7 +298,7 @@ extern int mkstempsl(char *, int);
/* mkstemp GNU */ /* mkstemp GNU */
#if defined(_GNU_SOURCE) #if defined(_GNU_SOURCE)
extern int mkostempl(char *, int); extern int mkostempl(char *, int);
extern int mkostempsl(char *, int , int); extern int mkostempsl(char *, int, int);
#endif #endif
DIR *opendirl(const char *); DIR *opendirl(const char *);
...@@ -314,18 +314,18 @@ extern int lsetxattrl(const char *, const char *, const void *, size_t, int); ...@@ -314,18 +314,18 @@ extern int lsetxattrl(const char *, const char *, const void *, size_t, int);
/* 64 */ /* 64 */
#if defined(_LARGEFILE64_SOURCE) && !((_FILE_OFFSET_BITS == 64) && \ #if defined(_LARGEFILE64_SOURCE) && !((_FILE_OFFSET_BITS == 64) && \
!defined(__PRAGMA_REDEFINE_EXTNAME)) !defined(__PRAGMA_REDEFINE_EXTNAME))
extern int openl64(const char *, int , ...); extern int openl64(const char *, int, ...);
extern int creatl64(const char *, mode_t); extern int creatl64(const char *, mode_t);
extern int statl64(const char *, struct stat64 *); extern int statl64(const char *, struct stat64 *);
/* 64 at funcs */ /* 64 at funcs */
#if defined(__EXTENSIONS__) || !defined(__XOPEN_OR_POSIX) || \ #if defined(__EXTENSIONS__) || !defined(__XOPEN_OR_POSIX) || \
defined(_ATFILE_SOURCE) defined(_ATFILE_SOURCE)
extern int openatl64(int , const char *, int, ...); extern int openatl64(int, const char *, int, ...);
#ifdef HAVE_ATTROPEN #ifdef HAVE_ATTROPEN
extern int attropenl64(const char *, const char *, int , ...); extern int attropenl64(const char *, const char *, int, ...);
#endif #endif
extern int fstatatl64(int , const char *, struct stat64 *, int); extern int fstatatl64(int, const char *, struct stat64 *, int);
#endif #endif
/* 64 lstat */ /* 64 lstat */
...@@ -339,7 +339,7 @@ extern int mkstempsl64(char *, int); ...@@ -339,7 +339,7 @@ extern int mkstempsl64(char *, int);
/* 64 mkstemp GNU*/ /* 64 mkstemp GNU*/
#if defined(_GNU_SOURCE) #if defined(_GNU_SOURCE)
extern int mkostempl64(char *, int); extern int mkostempl64(char *, int);
extern int mkostempsl64(char *, int , int); extern int mkostempsl64(char *, int, int);
#endif #endif
#endif /* 64 */ #endif /* 64 */
#else /* defined(__STDC__) */ #else /* defined(__STDC__) */
......
...@@ -374,12 +374,12 @@ openl64(const char *path, int oflag, ...) { ...@@ -374,12 +374,12 @@ openl64(const char *path, int oflag, ...) {
int int
creatl(const char *path, mode_t mode) { creatl(const char *path, mode_t mode) {
return _openatl(AT_FDCWD, path, O_WRONLY|O_CREAT|O_TRUNC , mode); return _openatl(AT_FDCWD, path, O_WRONLY|O_CREAT|O_TRUNC, mode);
} }
#if !defined(_LP64) #if !defined(_LP64)
int int
creatl64(const char *path, mode_t mode) { creatl64(const char *path, mode_t mode) {
return _openatl64(AT_FDCWD, path, O_WRONLY|O_CREAT|O_TRUNC , mode); return _openatl64(AT_FDCWD, path, O_WRONLY|O_CREAT|O_TRUNC, mode);
} }
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment