Fix extern "C"

This commit is contained in:
William S Fulton 2014-03-15 02:20:38 +00:00
commit 703d5b96fe

View file

@ -73,8 +73,11 @@ void display_mapping(DOH *d) {
}
}
extern "C" static int compareByLen(const DOH *f, const DOH *s) {
return Len(s) - Len(f);
extern "C"
{
static int compareByLen(const DOH *f, const DOH *s) {
return Len(s) - Len(f);
}
}