summaryrefslogtreecommitdiffstats
path: root/src/bdd/epd
diff options
context:
space:
mode:
Diffstat (limited to 'src/bdd/epd')
-rw-r--r--src/bdd/epd/epd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bdd/epd/epd.c b/src/bdd/epd/epd.c
index a80240bc..50da97c4 100644
--- a/src/bdd/epd/epd.c
+++ b/src/bdd/epd/epd.c
@@ -45,7 +45,7 @@ EpdAlloc()
{
EpDouble *epd;
- epd = ALLOC(EpDouble, 1);
+ epd = ABC_ALLOC(EpDouble, 1);
return(epd);
}
@@ -88,7 +88,7 @@ EpdCmp(const char *key1, const char *key2)
void
EpdFree(EpDouble *epd)
{
- FREE(epd);
+ ABC_FREE(epd);
}