1988-02-03 12:48:58 +00:00
|
|
|
#define CODE_EXPANDER
|
1989-01-27 16:41:04 +00:00
|
|
|
#include <back.h>
|
1987-11-20 10:41:03 +00:00
|
|
|
#include <assert.h>
|
|
|
|
|
1989-01-26 13:24:23 +00:00
|
|
|
extern int B_busy;
|
1987-11-20 10:41:03 +00:00
|
|
|
|
|
|
|
C_close()
|
|
|
|
{
|
1989-01-26 13:24:23 +00:00
|
|
|
assert( B_busy);
|
1987-11-20 10:41:03 +00:00
|
|
|
|
|
|
|
end_back();
|
1988-05-03 13:03:07 +00:00
|
|
|
close_back();
|
1989-01-26 13:24:23 +00:00
|
|
|
B_busy = 0;
|
1987-11-20 10:41:03 +00:00
|
|
|
}
|