summaryrefslogtreecommitdiff
path: root/protos.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-11-25 21:22:47 +0200
committerArnold D. Robbins <arnold@skeeve.com>2010-11-25 21:22:47 +0200
commit286748e1a8500f647c3bccfb467b02bf3a37f398 (patch)
tree6385bb2f1ee6c0837204edfd307babceeae7f89a /protos.h
parent50d4a80f67e5bcbf3902138d85a25f6a90847d31 (diff)
downloadgawk-286748e1a8500f647c3bccfb467b02bf3a37f398.tar.gz
Add POSIX string comparison with strcoll.
Diffstat (limited to 'protos.h')
-rw-r--r--protos.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/protos.h b/protos.h
index 26d520cc..0a9674d9 100644
--- a/protos.h
+++ b/protos.h
@@ -106,3 +106,7 @@ extern void _exit(int);
extern SPRINTF_RET sprintf(char *, const char *, ...);
#undef aptr_t
+
+#if !defined(HAVE_STRCOLL)
+extern int strcoll(const char *, const char *);
+#endif