All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m36s
8 lines
178 B
C
8 lines
178 B
C
#ifndef _KERNEL_LIBK_MINMAX_H
|
|
#define _KERNEL_LIBK_MINMAX_H
|
|
|
|
#define max(a, b) ((a) > (b) ? (a) : (b))
|
|
#define min(a, b) ((a) < (b) ? (a) : (b))
|
|
|
|
#endif // _KERNEL_LIBK_MINMAX_H
|