git-svn-id: https://www.grenoble.prabi.fr/svn/LECASofts/ecoPCR/trunk@5 60f365c0-8329-0410-b2a4-ec073aeeaa1d
19 lines
365 B
C
19 lines
365 B
C
#include "ecoPCR.h"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
void ecoError(int32_t error,
|
|
const char* message,
|
|
const char * filename,
|
|
int linenumber)
|
|
{
|
|
fprintf(stderr,"Error %d in file %s line %d : %s\n",
|
|
error,
|
|
filename,
|
|
linenumber,
|
|
message);
|
|
|
|
abort();
|
|
}
|