X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=babel%2Fmisc.c;fp=babel%2Fmisc.c;h=0000000000000000000000000000000000000000;hb=3c59ba5eef5cb4d39c06eb7f523b9c3b026bdc9b;hp=982927fd5b4d8e84121d6d6d3f563878f8499478;hpb=ed91d840318ed6ebfe3a5a77fa17114ddbf56640;p=projects%2Fchimara%2Fchimara.git diff --git a/babel/misc.c b/babel/misc.c deleted file mode 100644 index 982927f..0000000 --- a/babel/misc.c +++ /dev/null @@ -1,19 +0,0 @@ -/* misc.h : miscellany for babel - * This file is public domain - * 2006 by L. Ross Raszewski - */ - -#include -#include - -void *my_malloc(int size, char *rs) -{ - void *buf=calloc(size,1); - if (size && !buf) - { - fprintf(stderr,"Error: Memory exceeded (%d for %s)!\n",size,rs); - exit(2); - } - return buf; -} -