aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPhilippe De Muyter <phdm@macqel.be>2000-05-04 17:40:25 +0200
committerPhilippe De Muyter <phdm@gcc.gnu.org>2000-05-04 15:40:25 +0000
commit4aef973c2eae349b95773374d2f8afd0dded3e56 (patch)
tree8355a2a34485eb8d1c6612a2afbe686d538b5317 /include
parent6b151aa7066643b8e54fb1ba6025001e12d69a4a (diff)
downloadgcc-4aef973c2eae349b95773374d2f8afd0dded3e56.zip
gcc-4aef973c2eae349b95773374d2f8afd0dded3e56.tar.gz
gcc-4aef973c2eae349b95773374d2f8afd0dded3e56.tar.bz2
sort.h (sys/types.h): File included unconditionnaly.
* sort.h (sys/types.h): File included unconditionnaly. (stddef.h): File include only #ifdef __STDC__. * sort.c (UCHAR_MAX): Provide fallback definition. From-SVN: r33670
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog5
-rw-r--r--include/sort.h3
2 files changed, 8 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 1329b0f..f448555 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,8 @@
+Thu May 4 17:15:26 2000 Philippe De Muyter <phdm@macqel.be>
+
+ * sort.h (sys/types.h): File included unconditionnaly.
+ (stddef.h): File include only #ifdef __STDC__.
+
2000-05-03 Zack Weinberg <zack@wolery.cumb.org>
* symcat.h: Remove #endif label.
diff --git a/include/sort.h b/include/sort.h
index c205757..c8e1d55 100644
--- a/include/sort.h
+++ b/include/sort.h
@@ -22,7 +22,10 @@ Boston, MA 02111-1307, USA. */
#ifndef SORT_H
#define SORT_H
+#include <sys/types.h> /* For size_t */
+#ifdef __STDC__
#include <stddef.h>
+#endif /* __STDC__ */
#ifdef __cplusplus
extern "C" {