Revert "Add <limits.h>."

This reverts commit f6cde2d7a6.

gcc detected this header existing and emitted its own limits.h that
included the libc limits.h. This caused the #include_next chain to reach
the end and including the header failed.

Undoing this commit for now until the compiler toolchain is updated to
avoid this problem.
This commit is contained in:
Jonas 'Sortie' Termansen 2016-12-27 21:51:13 +01:00
parent 00261ea9e1
commit 0cf88fd58a
2 changed files with 1 additions and 31 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2014, 2016 Jonas 'Sortie' Termansen.
* Copyright (c) 2014 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

View File

@ -1,30 +0,0 @@
/*
* 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