Imported kball_final_src_16dec2004.tar.gz
[kball.git] / include / gerror.h
blob764b98359077990c1aa87432ade9484206590406
1 /*
2 -----------------------------------------------
3 Generic Allegro Project Template
4 By Kronoman - July 2003
5 Copyright (c) 2003, Kronoman
6 In loving memory of my father
7 -----------------------------------------------
8 gerror.h
9 -----------------------------------------------
10 Error messages
11 -----------------------------------------------
13 #ifndef GERROR_H
14 #define GERROR_H
16 #include <allegro.h>
17 #include <stdarg.h> /* for the variable argument list */
18 #include <stdlib.h> /* for use of malloc */
20 void raise_error(AL_CONST char *msg, ...);
22 #endif