*** empty log message ***
[libfirm] / ir / common / panic.c
index d78757c..a316e2f 100644 (file)
@@ -1,12 +1,26 @@
-/* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
-** All rights reserved.
-**
-** Authors: Martin Trapp, Christian Schaefer
-**
-*/
+/*
+ * Project:     libFIRM
+ * File name:   ir/common/panic.c
+ * Purpose:
+ * Author:      Martin Trapp, Christian Schaefer
+ * Modified by:
+ * Created:
+ * CVS-ID:      $Id$
+ * Copyright:   (c) 1998-2003 Universität Karlsruhe
+ * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
+ */
 
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+# include <stdlib.h>
+
+# include <stdio.h>
+# include <stdarg.h>
 # include "panic.h"
-# include "xprintf.h"
+
 
 void
 panic (const char *fmt, ...)
@@ -15,7 +29,7 @@ panic (const char *fmt, ...)
 
   fputs ("(panic) ", stderr);
   va_start (ap, fmt);
-  xvfprintf (stderr, fmt, ap);
+  vfprintf (stderr, fmt, ap);
   va_end (ap);
   putc ('\n', stderr);
   exit (1);