#include "mpool.h"

int main()
{
    struct mpool_s pool1;

    mpool_init(&pool1, 128, 16);

    return 0;
}