11 lines
197 B
C
11 lines
197 B
C
#include <lladd/operations.h>
|
|
|
|
#ifndef __ALLOC_H
|
|
#define __ALLOC_H
|
|
|
|
Operation getAlloc();
|
|
Operation getDealloc();
|
|
recordid Talloc(int xid, long size);
|
|
void Tdealloc(int xid, recordid rid);
|
|
|
|
#endif
|