Add <limits.h>.

This commit is contained in:
Jonas 'Sortie' Termansen 2016-11-20 11:56:26 +01:00
parent 6841715274
commit f6cde2d7a6
2 changed files with 32 additions and 8 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2014 Jonas 'Sortie' Termansen.
* Copyright (c) 2014, 2016 Jonas 'Sortie' Termansen.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -22,14 +22,8 @@
#include <sys/cdefs.h>
#ifdef __cplusplus
extern "C" {
#endif
#if __USE_SORTIX || __USE_POSIX
#define HOST_NAME_MAX 255
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif

30
libc/include/limits.h Normal file
View File

@ -0,0 +1,30 @@
/*
* Copyright (c) 2014, 2016 Jonas 'Sortie' Termansen.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* limits.h
* Implementation constants.
*/
#ifndef INCLUDE_LIMITS_H
#define INCLUDE_LIMITS_H
#include <sys/cdefs.h>
/* The compiler provides a bulk of the declarations. */
#include_next <limits.h>
#include <sortix/limits.h>
#endif