You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
384 B
21 lines
384 B
//======================================================================== |
|
// |
|
// Error.h |
|
// |
|
// Copyright 1996-2002 Glyph & Cog, LLC |
|
// |
|
//======================================================================== |
|
|
|
#ifndef ERROR_H |
|
#define ERROR_H |
|
|
|
#ifdef __GNUC__ |
|
#pragma interface |
|
#endif |
|
|
|
#include <stdio.h> |
|
#include "config.h" |
|
|
|
extern void CDECL error(int pos, char *msg, ...); |
|
|
|
#endif
|
|
|