Changeset 609 for branches/GNU/src/binutils/libiberty/xmalloc.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/libiberty/xmalloc.c
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r608 r609 18 18 Boston, MA 02111-1307, USA. */ 19 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 20 63 #ifdef HAVE_CONFIG_H 21 64 #include "config.h" … … 26 69 #include <stdio.h> 27 70 28 #ifdef __STDC__71 #ifdef 29 72 #include <stddef.h> 30 73 #else … … 78 121 allocated = (char *) sbrk (0) - (char *) &environ; 79 122 fprintf (stderr, 80 "\n%s%s Cannot allocate %lu bytes after allocating%lu bytes\n",123 "\n%s%s %lu bytes\n", 81 124 name, *name ? ": " : "", 82 125 (unsigned long) size, (unsigned long) allocated); 83 126 #else /* HAVE_SBRK */ 84 127 fprintf (stderr, 85 "\n%s%s Cannot allocate%lu bytes\n",128 "\n%s%s %lu bytes\n", 86 129 name, *name ? ": " : "", 87 130 (unsigned long) size); -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
