diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-12-29 07:05:08 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-12-29 07:05:08 +0000 |
commit | b80872c9174e47feedbc61e084660e637e6ba4b1 (patch) | |
tree | f08a04d0f1b824d2a3db69eb5002bc903fb3a08d /libc/sysdeps/linux/common/bits | |
parent | 91334307930f5cfb1bf5dc835de6ff5cc24d0ede (diff) |
pointless whitespace touchups
Diffstat (limited to 'libc/sysdeps/linux/common/bits')
-rw-r--r-- | libc/sysdeps/linux/common/bits/errno.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/libc/sysdeps/linux/common/bits/errno.h b/libc/sysdeps/linux/common/bits/errno.h index cb9c2ee43..bd8b1d4b8 100644 --- a/libc/sysdeps/linux/common/bits/errno.h +++ b/libc/sysdeps/linux/common/bits/errno.h @@ -19,7 +19,7 @@ #ifdef _ERRNO_H -# include <bits/errno_values.h> +#include <bits/errno_values.h> #ifndef ENOTSUP # define ENOTSUP EOPNOTSUPP @@ -29,7 +29,7 @@ # define ECANCELED 125 #endif -# ifndef __ASSEMBLER__ +#ifndef __ASSEMBLER__ /* We now need a declaration of the `errno' variable. */ extern int errno; @@ -37,16 +37,16 @@ extern int errno; /* Function to get address of global `errno' variable. */ extern int *__errno_location (void) __THROW __attribute__ ((__const__)); -# if defined _LIBC +# if defined _LIBC /* We wouldn't need a special macro anymore but it is history. */ -# define __set_errno(val) ((errno) = (val)) -# endif /* _LIBC */ +# define __set_errno(val) ((errno) = (val)) +# endif /* _LIBC */ -# if defined __UCLIBC_HAS_THREADS__ +# if defined __UCLIBC_HAS_THREADS__ /* When using threads, errno is a per-thread value. */ -# define errno (*__errno_location ()) -# endif +# define errno (*__errno_location ()) +# endif -# endif /* !__ASSEMBLER__ */ -#endif /* _ERRNO_H */ +#endif /* !__ASSEMBLER__ */ +#endif /* _ERRNO_H */ |