xref: /haiku/src/apps/glteapot/error.cpp (revision 83b1a68c52ba3e0e8796282759f694b7fdddf06d)
1 /*
2 	Copyright 1999, Be Incorporated.   All Rights Reserved.
3 	This file may be used under the terms of the Be Sample Code License.
4 */
5 
6 #include "error.h"
7 
8 void
9 fatalerror(const char *s)
10 {
11 	printf("FATAL ERROR: %s\n",s);
12 }
13