- move all generated files to their own directory

- cleanups
`:wq
This commit is contained in:
V'itor Santos Costa
2016-02-11 06:13:16 -08:00
parent 74b2b5561d
commit 6961626a3d
12 changed files with 9 additions and 72 deletions

View File

@@ -270,7 +270,6 @@ static char SccsId[] = "@(#)rheap.c 1.3 3/15/90";
#define RestoreDBErasedList() RestoreDBErasedList__(PASS_REGS1)
#define RestoreDBErasedIList() RestoreDBErasedIList__(PASS_REGS1)
#define RestoreYapRecords() RestoreYapRecords__(PASS_REGS1)
#define RestoreSWIAtoms() RestoreSWIAtoms__(PASS_REGS1)
static Term ConstantTermAdjust__(Term t USES_REGS) {
if (IsAtomTerm(t))
return AtomTermAdjust(t);
@@ -685,17 +684,6 @@ beginning:
}
}
static void RestoreSWIAtoms__(USES_REGS1) {
int i, j;
for (i = 0; i < AtomTranslations; i++) {
SWI_Atoms[i] = AtomAdjust(SWI_Atoms[i]);
}
for (j = 0; j < FunctorTranslations; j++) {
SWI_Functors[j] = FuncAdjust(SWI_Functors[j]);
}
RestoreSWIHash();
}
#define RestoreBlobTypes() RestoreBlobTypes__(PASS_REGS1)
#define RestoreBlobs() RestoreBlobs__(PASS_REGS1);