be4311c07e14feb728abc6425ee606ffaa611a58
markd
  Fri Jan 22 06:46:58 2021 -0800
merge with master

diff --git src/inc/psGfx.h src/inc/psGfx.h
index 13c5941..e8464d6 100644
--- src/inc/psGfx.h
+++ src/inc/psGfx.h
@@ -113,18 +113,18 @@
 /* Draw Bezier curve specified by 4 points: first (p1) and last (p4)
  *      and 2 control points (p2, p3) */
 
 void psSetDash(struct psGfx *ps, boolean on);
 /* Set dashed line mode on or off. If set on, show two points marked, with one point of space */
 
 char * convertEpsToPdf(char *epsFile);
 /* Convert EPS to PDF and return filename, or NULL if failure. */
 
 void psLineTo(struct psGfx *ps, double x, double y);
 /* Draw line from current point to given point,
  * and make given point new current point. */
 
 void psCircle(struct psGfx *ps, double x, double y, double rad, boolean filled);
 
-void psSetFont(struct psGfx *ps, char *fontName);
+void psSetFont(struct psGfx *ps, char *fontName, double fontSize );
 #endif /* PSGFX_H */