diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-05-25 15:56:20 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-05-25 15:56:20 +0000 |
commit | fe15f9f7efb7aadca1b0706c949f3c98a5c9d507 (patch) | |
tree | d0fe001e7fa408f1918ba45a408b360cefa6f354 /libexec/ld.so/sparc | |
parent | 940d7463b98bd355f1d60a5edc0b0b9406e5d273 (diff) |
spacing
Diffstat (limited to 'libexec/ld.so/sparc')
-rw-r--r-- | libexec/ld.so/sparc/ldasm.S | 10 | ||||
-rw-r--r-- | libexec/ld.so/sparc/rtld_machine.c | 10 | ||||
-rw-r--r-- | libexec/ld.so/sparc/syscall.h | 4 |
3 files changed, 12 insertions, 12 deletions
diff --git a/libexec/ld.so/sparc/ldasm.S b/libexec/ld.so/sparc/ldasm.S index bbe50228e43..41304417ab3 100644 --- a/libexec/ld.so/sparc/ldasm.S +++ b/libexec/ld.so/sparc/ldasm.S @@ -1,4 +1,4 @@ -/* $OpenBSD: ldasm.S,v 1.13 2003/07/09 21:01:10 drahn Exp $ */ +/* $OpenBSD: ldasm.S,v 1.14 2004/05/25 15:56:18 deraadt Exp $ */ /* * Copyright (c) 2001 Jason L. Wright (jason@thought.net) @@ -263,7 +263,7 @@ _dl_fstat: add %o7, 8, %g2 ! just return on success t ST_SYSCALL ! off to wonderland retl - sub %g0, %o0, %o0 ! error: result = -errno + sub %g0, %o0, %o0 ! error: result = -errno .section ".text" @@ -275,7 +275,7 @@ _dl_fcntl: add %o7, 8, %g2 ! just return on success t ST_SYSCALL ! off to wonderland retl - sub %g0, %o0, %o0 ! error: result = -errno + sub %g0, %o0, %o0 ! error: result = -errno .section ".text" @@ -287,7 +287,7 @@ _dl_getdirentries: add %o7, 8, %g2 ! just return on success t ST_SYSCALL ! off to wonderland retl - sub %g0, %o0, %o0 ! error: result = -errno + sub %g0, %o0, %o0 ! error: result = -errno .section ".text" @@ -299,7 +299,7 @@ _dl_sysctl: add %o7, 8, %g2 ! just return on success t ST_SYSCALL ! off to wonderland retl - sub %g0, %o0, %o0 ! error: result = -errno + sub %g0, %o0, %o0 ! error: result = -errno /* _dl_sigprocmask does not support NULL new mask */ diff --git a/libexec/ld.so/sparc/rtld_machine.c b/libexec/ld.so/sparc/rtld_machine.c index 69331213591..3b70e8e2f49 100644 --- a/libexec/ld.so/sparc/rtld_machine.c +++ b/libexec/ld.so/sparc/rtld_machine.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rtld_machine.c,v 1.20 2003/09/04 19:37:08 drahn Exp $ */ +/* $OpenBSD: rtld_machine.c,v 1.21 2004/05/25 15:56:18 deraadt Exp $ */ /* * Copyright (c) 1999 Dale Rahn @@ -392,9 +392,9 @@ _dl_md_reloc_got(elf_object_t *object, int lazy) * The second entry holds the object identification. * Note: each PLT entry is three words long. */ -#define SAVE 0x9de3bfc0 /* i.e. `save %sp,-64,%sp' */ -#define CALL 0x40000000 -#define NOP 0x01000000 +#define SAVE 0x9de3bfc0 /* i.e. `save %sp,-64,%sp' */ +#define CALL 0x40000000 +#define NOP 0x01000000 pltgot[0] = SAVE; pltgot[1] = CALL | ((Elf_Addr)&_dl_bind_start - (Elf_Addr)&pltgot[1]) >> 2; @@ -494,7 +494,7 @@ _dl_mul_fixup() size_t len; - mib[0] = CTL_MACHDEP; + mib[0] = CTL_MACHDEP; mib[1] = CPU_V8MUL; len = sizeof(v8mul); _dl_sysctl(mib, 2, &v8mul, &len, NULL, 0); diff --git a/libexec/ld.so/sparc/syscall.h b/libexec/ld.so/sparc/syscall.h index 520203bc847..92ebc12d3d3 100644 --- a/libexec/ld.so/sparc/syscall.h +++ b/libexec/ld.so/sparc/syscall.h @@ -1,4 +1,4 @@ -/* $OpenBSD: syscall.h,v 1.6 2003/07/06 20:04:00 deraadt Exp $ */ +/* $OpenBSD: syscall.h,v 1.7 2004/05/25 15:56:18 deraadt Exp $ */ /* * Copyright (c) 2001 Niklas Hallqvist @@ -57,7 +57,7 @@ int _dl_sysctl(int *, u_int, void *, size_t *, void *, size_t); static inline off_t _dl_lseek(int fildes, off_t offset, int whence) { - return _dl__syscall((quad_t)SYS_lseek, fildes, 0, offset, whence); + return _dl__syscall((quad_t)SYS_lseek, fildes, 0, offset, whence); } #endif /*__DL_SYSCALL_H__*/ |