/* $Id$ */ /* Copyright (c) 2018 Pierre Pronchery */ /* This file is part of DeforaOS uKernel */ #ifndef UKERNEL_LIMITS_H # define UKERNEL_LIMITS_H /* constants */ /* numerical */ # ifndef INT_MAX # define INT_MAX 0x7fffffff # endif # ifndef INT_MIN # define INT_MIN -0x7fffffff # endif #endif /* !UKERNEL_LIMITS_H */