summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2014-07-27 16:53:28 -0400
committerBehdad Esfahbod <behdad@behdad.org>2014-07-27 16:53:28 -0400
commit37e501ed0af9b1f68f64600e00e90809e19f9302 (patch)
tree4d8f1de4ed3f78679d0760c11aaddd4fbd0f58c4
parenta9e7b0494e04b3925d1bccc140ff2500cfff9618 (diff)
Remove unneeded FcPublic
-rw-r--r--src/fcweight.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fcweight.c b/src/fcweight.c
index 87bbe67..c62f807 100644
--- a/src/fcweight.c
+++ b/src/fcweight.c
@@ -49,7 +49,7 @@ static int lerp(int x, int x1, int x2, int y1, int y2)
return y1 + (dy*(x-x1) + dx/2) / dx;
}
-FcPublic int
+int
FcWeightFromOpenType (int ot_weight)
{
int i;
@@ -66,7 +66,7 @@ FcWeightFromOpenType (int ot_weight)
return lerp (ot_weight, map[i-1].ot, map[i].ot, map[i-1].fc, map[i].fc);
}
-FcPublic int
+int
FcWeightToOpenType (int fc_weight)
{
int i;