File: gerror.h

package info (click to toggle)
kball 0.0.20041216-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 10,768 kB
  • ctags: 524
  • sloc: cpp: 4,274; makefile: 104; sh: 64; ansic: 43
file content (22 lines) | stat: -rw-r--r-- 549 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* 
-----------------------------------------------
Generic Allegro Project Template
By Kronoman - July 2003
Copyright (c) 2003, Kronoman
In loving memory of my father
-----------------------------------------------
gerror.h
-----------------------------------------------
Error messages
----------------------------------------------- 
*/
#ifndef GERROR_H
#define GERROR_H

#include <allegro.h>
#include <stdarg.h> /* for the variable argument list */
#include <stdlib.h> /* for use of malloc */

void raise_error(AL_CONST char *msg, ...);

#endif