X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=dfa%2Fimalloc.h;h=a53a4e84f9af10e4139f4232c6084dcf815bffdf;hb=83533000f9456dcab2fc171abafd84d6104d4087;hp=6acb0a9763a8e1d1a62ffa6c08b6cfd4062255fb;hpb=3c0459742097fa807b2927e4ae69e2ae4b5fbecd;p=idzebra-moved-to-github.git diff --git a/dfa/imalloc.h b/dfa/imalloc.h index 6acb0a9..a53a4e8 100644 --- a/dfa/imalloc.h +++ b/dfa/imalloc.h @@ -1,10 +1,16 @@ /* - * Copyright (C) 1994-1997, Index Data I/S + * Copyright (C) 1994-1999, Index Data * All rights reserved. * Sebastian Hammer, Adam Dickmeiss * * $Log: imalloc.h,v $ - * Revision 1.3 1997-10-27 14:27:13 adam + * Revision 1.5 1999-05-26 07:49:12 adam + * C++ compilation. + * + * Revision 1.4 1999/02/02 14:50:09 adam + * Updated WIN32 code specific sections. Changed header. + * + * Revision 1.3 1997/10/27 14:27:13 adam * Minor changes. * * Revision 1.2 1996/05/14 11:33:41 adam @@ -16,6 +22,10 @@ * */ +#ifdef __cplusplus +extern "C" { +#endif + void *imalloc (size_t); void *icalloc (size_t); void ifree (void *); @@ -30,4 +40,7 @@ extern int free_calls; #endif +#ifdef __cplusplus +} +#endif