#ifndef _SYS_PARAM_H_
#define _SYS_PARAM_H_ 1

#define roundup(x, y)  ((((x) + ((y) - 1)) / (y)) * (y))

#endif