mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-05 21:00:05 +00:00
Update.
2000-12-05 Ulrich Drepper <drepper@redhat.com> * sysdeps/alpha/elf/start.S (__data_start): Define.
This commit is contained in:
parent
0e96315a1d
commit
298c70f471
@ -1,3 +1,7 @@
|
||||
2000-12-05 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sysdeps/alpha/elf/start.S (__data_start): Define.
|
||||
|
||||
2000-12-05 H.J. Lu <hjl@gnu.org>
|
||||
|
||||
* nss/getXXent_r.c (setup): Change the return type to int.
|
||||
|
@ -1,6 +1,6 @@
|
||||
# Makefile for csu code for GNU C library.
|
||||
|
||||
# Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1995,1996,1997,1998,1999,2000 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
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* Startup code for Alpha/ELF.
|
||||
Copyright (C) 1993, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
|
||||
Copyright (C) 1993,1995,1996,1997,1998,2000 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
Contributed by Richard Henderson <rth@tamu.edu>
|
||||
|
||||
@ -59,3 +59,11 @@ _start:
|
||||
|
||||
/* For ECOFF backwards compatibility. */
|
||||
weak_alias(_start, __start)
|
||||
|
||||
/* Define a symbol for the first piece of initialized data. */
|
||||
.data
|
||||
.globl __data_start
|
||||
__data_start:
|
||||
.long 0
|
||||
.weak data_start
|
||||
data_start = __data_start
|
||||
|
Loading…
Reference in New Issue
Block a user