about summary refs log tree commit diff
path: root/sysdeps/mach
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-05-02 21:13:45 +0000
committerRoland McGrath <roland@gnu.org>2002-05-02 21:13:45 +0000
commit0ca85e56d4c3b00f9c203dd017eea9e64ee08b01 (patch)
treea251b4cfb82b2be2741237a7b526107126be8c43 /sysdeps/mach
parent94eb5b361c13426d57c5fc2bbd4a1de080c39d7e (diff)
downloadglibc-0ca85e56d4c3b00f9c203dd017eea9e64ee08b01.tar.gz
glibc-0ca85e56d4c3b00f9c203dd017eea9e64ee08b01.tar.xz
glibc-0ca85e56d4c3b00f9c203dd017eea9e64ee08b01.zip
2002-05-01 Roland McGrath <roland@frob.com>
	* sysdeps/mach/hurd/alpha/static-start.S: New file (unfinished).
Diffstat (limited to 'sysdeps/mach')
-rw-r--r--sysdeps/mach/hurd/alpha/static-start.S30
1 files changed, 30 insertions, 0 deletions
diff --git a/sysdeps/mach/hurd/alpha/static-start.S b/sysdeps/mach/hurd/alpha/static-start.S
new file mode 100644
index 0000000000..a31d0d097a
--- /dev/null
+++ b/sysdeps/mach/hurd/alpha/static-start.S
@@ -0,0 +1,30 @@
+/* Startup code for statically linked Hurd/Alpha binaries.
+   Copyright (C) 2002 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, write to the Free
+   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   02111-1307 USA.  */
+
+#include <sysdep.h>
+
+	.text
+	.align 3
+	.globl _start
+	.type _start,@function
+_start:
+	jsr	ra, _hurd_stack_setup
+
+#define _start _start1
+#include <sysdeps/alpha/elf/start.S>