#ifndef port_after_h #define port_after_h #include #include #include #include #include #ifndef MIN #define MIN(x,y) (((x) <= (y)) ? (x) : (y)) #endif #ifndef MAX #define MAX(x,y) (((x) >= (y)) ? (x) : (y)) #endif #ifndef ALIGN #define ALIGN(p) (((uintptr_t)(p) + (sizeof(long) - 1)) & ~(sizeof(long) - 1)) #endif #endif