16 lines
305 B
C
16 lines
305 B
C
/*********************************************************************
|
|
* error.h
|
|
*********************************************************************/
|
|
|
|
#ifndef _ERROR_H_
|
|
#define _ERROR_H_
|
|
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
|
|
void KLTError(char *fmt, ...);
|
|
void KLTWarning(char *fmt, ...);
|
|
|
|
#endif
|
|
|