diff options
author | Pedro F. Giffuni <pfg@FreeBSD.org> | 2014-05-30 01:09:07 +0000 |
---|---|---|
committer | Pedro F. Giffuni <pfg@FreeBSD.org> | 2014-05-30 01:09:07 +0000 |
commit | 1bb07edbd41ba73e6bfc12bc9f85d92f7c4e312d (patch) | |
tree | 0f28ab48e41df14ffe5cb02b4faa7394ea45e013 /include/strings.h | |
parent | 9b17fa8f3c2075bf517bb71c3cbfe11be8bf71f9 (diff) |
Notes
Diffstat (limited to 'include/strings.h')
-rw-r--r-- | include/strings.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/strings.h b/include/strings.h index f2720786f097..4fb9311657f3 100644 --- a/include/strings.h +++ b/include/strings.h @@ -59,6 +59,10 @@ char *rindex(const char *, int) __pure; /* LEGACY */ #endif int strcasecmp(const char *, const char *) __pure; int strncasecmp(const char *, const char *, size_t) __pure; + +#if __POSIX_VISIBLE >= 200809 || defined(_XLOCALE_H_) +#include <xlocale/_strings.h> +#endif __END_DECLS #endif /* _STRINGS_H_ */ |