]> granicus.if.org Git - graphviz/commitdiff
Janitor: fix more: "warning: function declaration isn’t a prototype"
authorellson <devnull@localhost>
Mon, 23 Feb 2009 16:16:28 +0000 (16:16 +0000)
committerellson <devnull@localhost>
Mon, 23 Feb 2009 16:16:28 +0000 (16:16 +0000)
cmd/smyrna/glexpose.c
cmd/smyrna/topview.c
cmd/smyrna/topview.h

index d65328c0b41ba359b7faf172adad410fc9d076e0..43439e7506ada3640a7d91df254f7856f7032de5 100644 (file)
@@ -128,7 +128,7 @@ int glexpose_main(ViewInfo * view)
        params:ViewInfo , global view variable defined in viewport.c
        return value:none
 */
-void drawtestpoly()
+void drawtestpoly(void)
 {
        glEnable(GL_TEXTURE_2D);
        glTexEnvf (GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
@@ -191,7 +191,7 @@ int glexpose_drawgraph(ViewInfo * view)
     return 0;
 }
 
-void drawRotatingTools()
+void drawRotatingTools(void)
 {
        float x,y;
        float x1,y1,z1;
index 66d3c5288c12bfd27b68e229bf336f19d6fb5cca..9d749907fa12896318bcd99913061aa4a9e09c56 100755 (executable)
@@ -40,7 +40,7 @@ static float dy = 0.0;
 static float dz = 0.0;
 
    /* Forward declarations */
-static glCompSet *glcreate_gl_topview_menu();
+static glCompSet *glcreate_gl_topview_menu(void);
 static void set_boundaries(topview * t);
 static void set_topview_options(void);
 static int draw_topview_label(topview_node * v, float zdepth);
@@ -624,7 +624,7 @@ static int pick_node(topview_node * n)
     return 0;
 
 }
-static int draw_node_hint_boxes()
+static int draw_node_hint_boxes(void)
 {
     int ind;
        char buf[512];
@@ -901,7 +901,7 @@ static int draw_topview_label(topview_node * v, float zdepth)
 
 
 
-static void set_topview_options()
+static void set_topview_options(void)
 {
 
     if ((view->mouse.mouse_mode == 10) && (view->mouse.mouse_down == 1))       //selected, if there is move move it, experimental
@@ -1023,7 +1023,7 @@ static int node_visible(Agnode_t * n)
     return OD_Visible(n);
 }
 
-int move_TVnodes()
+int move_TVnodes(void)
 {
     topview_node *v;
     int ind = 0;
@@ -1197,7 +1197,7 @@ void originate_distorded_coordinates(topview * t)
 }
 
 #if 0
-void test_callback()
+void test_callback(void)
 {
 }
 #endif
@@ -1398,7 +1398,7 @@ static char *smyrna_icon_zoomminus;
 static char *smyrna_icon_fisheye;
 static char *smyrna_icon_rotate;
 
-static glCompSet *glcreate_gl_topview_menu()
+static glCompSet *glcreate_gl_topview_menu(void)
 {
 
     glCompSet *s = glCompSetNew();
index b6aab29e127213241f24d296fea9eefa0bc1b495..a8f0ca8fae8ee84fc44de6218ef26c5b2c90b6f8 100755 (executable)
@@ -28,7 +28,7 @@ void cleartopview(topview * t);
 void preparetopview(Agraph_t * g, topview * t);
 void drawTopViewGraph(Agraph_t * g);
 int set_update_required(topview * t);
-int move_TVnodes();
+int move_TVnodes(void);
 void local_zoom(topview * t);
 void originate_distorded_coordinates(topview * t);
 float calcfontsize(float totaledgelength,int totallabelsize,int edgecount,int totalnodecount);