l3.libnazgul/src/spaceListClose.c

15 lines
224 B
C
Raw Normal View History

2004-02-25 18:51:33 +00:00
#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;
}