diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2016-04-09 10:15:42 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2016-04-09 10:15:42 +0000 |
| commit | 72ced0ddd3f02548e978b51891d155eff1245a4e (patch) | |
| tree | 26337cbad108aa90c8bb199ed50fc193569cbee3 /src/xutf8 | |
| parent | 9aa5e497bafebcc47f08272db3a20af4ed8d2397 (diff) | |
Fix compiler warnings [-Wmissing-declarations].
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11559 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/xutf8')
| -rw-r--r-- | src/xutf8/case.c | 5 | ||||
| -rw-r--r-- | src/xutf8/is_spacing.c | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/src/xutf8/case.c b/src/xutf8/case.c index 95d76bbdb..de97348cf 100644 --- a/src/xutf8/case.c +++ b/src/xutf8/case.c @@ -19,9 +19,12 @@ * This file is required on all platforms for UTF-8 support */ -#include "headers/case.h" +#include "../Xutf8.h" #include <stdlib.h> +/* include UCS tables */ +#include "headers/case.h" + int XUtf8Tolower(int ucs) { int ret; diff --git a/src/xutf8/is_spacing.c b/src/xutf8/is_spacing.c index cd6eb687c..30229e72e 100644 --- a/src/xutf8/is_spacing.c +++ b/src/xutf8/is_spacing.c @@ -15,9 +15,12 @@ */ /* - * This file is required on all platforms for utf8 support + * This file is required on all platforms for UTF-8 support */ +#include "../Xutf8.h" + +/* include UCS tables */ #include "headers/spacing.h" unsigned short |
