15 lines
224 B
C
15 lines
224 B
C
|
#include "libnazgul.h"
|
||
|
#include "ids.h"
|
||
|
|
||
|
int msgSpaceListClose(msgSpaceList * list){
|
||
|
|
||
|
if (munmap(list,sizeof(msgSpaceList)) < 0){
|
||
|
NZG_ERROR("unmap",msgSpaceListId);
|
||
|
goto ERROR;
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
ERROR:
|
||
|
return -1;
|
||
|
}
|