summaryrefslogtreecommitdiff
path: root/boot/syscall.S
diff options
context:
space:
mode:
Diffstat (limited to 'boot/syscall.S')
-rw-r--r--boot/syscall.S10
1 files changed, 5 insertions, 5 deletions
diff --git a/boot/syscall.S b/boot/syscall.S
index 1f6b7307..29be2478 100644
--- a/boot/syscall.S
+++ b/boot/syscall.S
@@ -17,11 +17,11 @@ You should have received a copy of the GNU General Public License
along with the GNU Hurd; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
- .globl _errno
+#include <i386/asm.h>
+
+ .globl EXT(errno)
.text
- .globl _syscall
- .align 4
-_syscall:
+ENTRY(syscall)
pop %ecx
pop %eax
push %ecx
@@ -29,6 +29,6 @@ _syscall:
jb error
ret
error:
- movl %eax,_errno
+ movl %eax,EXT(errno)
movl $-1,%eax
ret