Changeset 1391 for branches/GNU/src/gcc/libiberty/xmalloc.c
- Timestamp:
- Apr 27, 2004, 8:39:34 PM (21 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 dir.info 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libiberty/xmalloc.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r1390 r1391 121 121 allocated = (char *) sbrk (0) - (char *) &environ; 122 122 fprintf (stderr, 123 "\n%s%s Cannot allocate %lu bytes after allocating%lu bytes\n",123 "\n%s%sout of memory allocating %lu bytes after a total of %lu bytes\n", 124 124 name, *name ? ": " : "", 125 125 (unsigned long) size, (unsigned long) allocated); 126 126 #else /* HAVE_SBRK */ 127 127 fprintf (stderr, 128 "\n%s%s Cannot allocate%lu bytes\n",128 "\n%s%sout of memory allocating %lu bytes\n", 129 129 name, *name ? ": " : "", 130 130 (unsigned long) size); -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.