xref: /haiku/src/apps/glteapot/error.cpp (revision 0b2dbe7d46ee888392907c60131b7f7652314175)
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 fatalerror(char *s)
9 {
10   printf("FATAL ERROR: %s\n",s);
11 };
12