summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--PACE/ChangeLog5
-rw-r--r--PACE/pace/ctype.h10
2 files changed, 15 insertions, 0 deletions
diff --git a/PACE/ChangeLog b/PACE/ChangeLog
index 3a553950f58..8b7e20f1068 100644
--- a/PACE/ChangeLog
+++ b/PACE/ChangeLog
@@ -1,3 +1,8 @@
+Sun Apr 22 15:03:11 2001 Carlos O'Ryan <coryan@uci.edu>
+
+ * pace/ctype.h:
+ Add missing #includes that were causing compilation warnings.
+
Sat Apr 21 17:37:40 2001 Carlos O'Ryan <coryan@uci.edu>
* pace/win32/socket.inl:
diff --git a/PACE/pace/ctype.h b/PACE/pace/ctype.h
index 10a457f51ba..ff8ca36b242 100644
--- a/PACE/pace/ctype.h
+++ b/PACE/pace/ctype.h
@@ -147,6 +147,16 @@ extern "C" {
PACE_INLINE int pace_toupper (int c);
#endif /* PACE_HAS_POSIX_CLS_UOF */
+#if defined (PACE_HAS_INLINE)
+# if (PACE_HAS_POSIX)
+# include "pace/posix/ctype.inl"
+# elif (PACE_VXWORKS)
+# include "pace/vxworks/ctype.inl"
+# elif (PACE_WIN32)
+# include "pace/win32/ctype.inl"
+# endif
+#endif /* PACE_HAS_INLINE */
+
#if defined (PACE_HAS_CPLUSPLUS)
}
#endif /* PACE_HAS_CPLUSPLUS */