view c/regexParser/error.cc @ 114:c82e7a7ef8d9 pairPro

add error.cc
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Mon, 23 Nov 2015 19:19:43 +0900
parents
children ca30f8334741
line wrap: on
line source

#include <stdio.h>

void mallocFailedMessage();

void mallocFailedMessage() {
    fprintf(stderr, "Failed to allocate memory.\n");
    exit(-1);
}