diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-03-20 03:00:15 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-03-20 03:00:39 +0100 |
commit | 79962d89a95247509b345ae068a84575718edbd7 (patch) | |
tree | f87476687edb813de9f53bde12f323acc586dc2b /sysdeps | |
parent | 8d3f9e85cfa14e5f82a0e9e934b9fe1e4cb342bf (diff) | |
download | glibc-79962d89a95247509b345ae068a84575718edbd7.zip glibc-79962d89a95247509b345ae068a84575718edbd7.tar.gz glibc-79962d89a95247509b345ae068a84575718edbd7.tar.bz2 |
hurd: Code style fixes
No code change.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/mach/hurd/errno-loc.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/sysdeps/mach/hurd/errno-loc.c b/sysdeps/mach/hurd/errno-loc.c index 95d0fe4..05e7673 100644 --- a/sysdeps/mach/hurd/errno-loc.c +++ b/sysdeps/mach/hurd/errno-loc.c @@ -17,13 +17,11 @@ <http://www.gnu.org/licenses/>. */ #if IS_IN (rtld) -/* - * rtld can not access TLS too early, thus rtld_errno. - * - * Instead of making __open/__close pass errno from TLS to rtld_errno, simply - * use a weak __errno_location using rtld_errno, which will be overriden by the - * libc definition. - */ +/* rtld can not access TLS too early, thus rtld_errno. + + Instead of making __open/__close pass errno from TLS to rtld_errno, simply + use a weak __errno_location using rtld_errno, which will be overriden by the + libc definition. */ static int rtld_errno; int * weak_function __errno_location (void) |