Subject: Fix to ld: nmed to update src/lib/libc/arch/mips/sbrk.S
To: None <dean@fsa.ca>
From: Jonathan Stone <jonathan@DSG.Stanford.EDU>
List: port-pmax
Date: 11/26/1994 22:59:04
The following patch changes src/lib/libc.arch/mips/sbrk.s to use
`_end' instead of `end', consonant with the compiler prepending
an underscore to   extern C  symbols.
You'll need this if and when moving to using a new `ld' that defines
`_end' instead of `end` -- as well as the other patches to 12 files
under src/lib that I've already posted.


*** src/lib/libc/arch/mips/sys/sbrk.s.DIST	Tue May 24 00:13:18 1994
--- src/lib/libc/arch/mips/sys/sbrk.S	Sat Nov 26 22:53:16 1994
***************
*** 46,55 ****
  	.data
  	.globl	minbrk
  minbrk:
! 	.word	end
  	.globl	curbrk
  curbrk:
! 	.word	end
  	.text
  
  LEAF(sbrk)
--- 46,55 ----
  	.data
  	.globl	minbrk
  minbrk:
! 	.word	_end
  	.globl	curbrk
  curbrk:
! 	.word	_end
  	.text
  
  LEAF(sbrk)


--Jonathan Stone