File: gerror.h

package info (click to toggle)
kball 0.0.20041216-8
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 10,968 kB
  • ctags: 680
  • sloc: cpp: 4,276; makefile: 107; 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