diff options
author | Patrick Lam <plam@MIT.EDU> | 2006-03-03 15:12:12 +0000 |
---|---|---|
committer | Patrick Lam <plam@MIT.EDU> | 2006-03-03 15:12:12 +0000 |
commit | c003f5aec37e099d7f5a88d29cc4b2d5f1d002eb (patch) | |
tree | 334d9d530be9e4b50368b02d4d60b8a1496e3191 /fc-case | |
parent | bb6b19938e2c9d115abd4f36439c365b63713bb1 (diff) |
Fix compilation on AIX with stub definitions (bug 6097).
Diffstat (limited to 'fc-case')
-rw-r--r-- | fc-case/fc-case.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/fc-case/fc-case.c b/fc-case/fc-case.c index f7f8277e..e0548f02 100644 --- a/fc-case/fc-case.c +++ b/fc-case/fc-case.c @@ -28,6 +28,16 @@ #define MAX_OUT 32 #define MAX_LINE 8192 +/* stub definitions for declarations from fcint.h.. */ +int * _fcBankId = 0, * _fcBankIdx = 0; + +int +FcCacheBankToIndexMTF (int bank) +{ + return 0; +} +/* end stub definitions */ + typedef enum _caseFoldClass { CaseFoldCommon, CaseFoldFull, CaseFoldSimple, CaseFoldTurkic } CaseFoldClass; typedef struct _caseFoldClassMap { |