Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/sys/mmixware/sbrk.c')
-rw-r--r--newlib/libc/sys/mmixware/sbrk.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/newlib/libc/sys/mmixware/sbrk.c b/newlib/libc/sys/mmixware/sbrk.c
index 5d256127a..5eb9d77cf 100644
--- a/newlib/libc/sys/mmixware/sbrk.c
+++ b/newlib/libc/sys/mmixware/sbrk.c
@@ -1,7 +1,6 @@
/* sbrk for MMIXware.
Copyright (C) 2001 Hans-Peter Nilsson.
-
Permission to use, copy, modify, and distribute this software is freely
granted, provided that this notice is preserved with no changes.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
@@ -26,13 +25,13 @@ extern char *_Sbrk_high;
Pool_Segment and any other symbols that would be predefined in mmixal. */
__asm__ (" .global _Sbrk_high\n"
- "_Sbrk_high IS Pool_Segment\n"
- "Pool_Segment IS 0x40<<56");
+ "_Sbrk_high IS Pool_Segment\n"
+ "Pool_Segment IS 0x40<<56");
caddr_t
_sbrk (size_t incr)
{
- extern char end; /* Defined by the linker */
+ extern char end; /* Defined by the linker */
char *prev_heap_end;
prev_heap_end = _Sbrk_high;