* src/vterminate.cc (__verbose_terminate_handler): Send
diagnostics to stderr.
From-SVN: r60254
+2002-12-18 Jason Merrill <jason@redhat.com>
+
+ * src/vterminate.cc (__verbose_terminate_handler): Send
+ diagnostics to stderr.
+
2002-12-18 Ulrich Weigand <uweigand@de.ibm.com>
* configure.in: Define with_target_subdir and with_build_subdir
int status = -1;
char *dem = 0;
- // Disabled until __cxa_demangle gets the runtime GPL exception.
dem = __cxa_demangle(name, 0, 0, &status);
- printf("terminate called after throwing a `%s'\n",
- status == 0 ? dem : name);
+ fprintf(stderr, "terminate called after throwing a `%s'\n",
+ status == 0 ? dem : name);
if (status == 0)
free(dem);