summaryrefslogtreecommitdiff
path: root/PACE/pace/posix/strings.inl
diff options
context:
space:
mode:
Diffstat (limited to 'PACE/pace/posix/strings.inl')
-rw-r--r--PACE/pace/posix/strings.inl35
1 files changed, 0 insertions, 35 deletions
diff --git a/PACE/pace/posix/strings.inl b/PACE/pace/posix/strings.inl
deleted file mode 100644
index c0afa77d513..00000000000
--- a/PACE/pace/posix/strings.inl
+++ /dev/null
@@ -1,35 +0,0 @@
-/* $Id$ -*- C -*-
-
- * =============================================================================
- *
- * = LIBRARY
- * pace
- *
- * = FILENAME
- * strings.inl
- *
- * = AUTHOR
- * Luther Baker
- *
- * ============================================================================= */
-
-
-#include <strings.h>
-
-
-PACE_INLINE
-int
-pace_strcasecmp (const char * s1,
- const char * s2)
-{
- return strcasecmp (s1, s2);
-}
-
-PACE_INLINE
-int
-pace_strncasecmp (const char * s1,
- const char * s2,
- size_t n)
-{
- return strncasecmp (s1, s2, n);
-}