]> granicus.if.org Git - graphviz/commitdiff
remove "static" because .h declares it as "extern"
authorellson <devnull@localhost>
Thu, 15 Oct 2009 23:12:23 +0000 (23:12 +0000)
committerellson <devnull@localhost>
Thu, 15 Oct 2009 23:12:23 +0000 (23:12 +0000)
cmd/smyrna/draw.c
cmd/smyrna/draw.h

index 1ff8f79deb31dcb1989b24f8cda908d1440b65db..9ef97237467ac6e3d5f3e5691da05f6baa552c57 100755 (executable)
@@ -199,7 +199,7 @@ static void relocate_spline(sdot_op * sop, int param)
        }*/
 }
 
-static void DrawBeziers(sdot_op* o, int param)
+void DrawBeziers(sdot_op* o, int param)
 {
     //SEND ALL CONTROL POINTS IN 3D ARRAYS
 
index ca05f7c7fe472f4ea7c3188fcbe4c5d2f379e4c3..67ee93792335ddd1855e134728316359c3f75137 100755 (executable)
@@ -47,7 +47,7 @@ extern "C" {
        void draw_sphere(float x, float y, float z, float r);
 
        /*xdot drawing functions*/
-       extern  void DrawBeziers(sdot_op* o, int param);
+       extern void DrawBeziers(sdot_op* o, int param);
        extern void DrawEllipse(sdot_op * op, int param);
        extern void DrawPolygon(sdot_op * op, int param);
        extern void DrawPolyline(sdot_op * op, int param);