OSDN Git Service

I was library can be compiled 20140223
[zither/ds-zither.git] / libms / mlexit.c
1 // mlexit.c
2 // $Id: mlexit.c,v 1.1.1.1 2007/09/19 05:49:54 sendan Exp $
3 // masashi shimakura
4
5 #include<stdio.h>
6 #include<stdlib.h>
7
8 int mlexit(void);
9
10 int mlexit(void)
11 {
12 fprintf(stderr, "malloc() Not set buffer. exit\n");
13 exit(1);
14 return 0;
15 }
16
17
18