21 lines
347 B
C
21 lines
347 B
C
/* $Id$ */
|
|
/* Copyright (c) 2018 Pierre Pronchery <khorben@defora.org> */
|
|
/* 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 */
|