mostly by using (void) instead of () for functions with empty parameter lists.
return FALSE;
}
-static void emit_once_reset()
+static void emit_once_reset(void)
{
if (strings) {
dtclose(strings);
static unsigned char outbuf[SMALLBUF];
static agxbuf ps_xb;
-static void cleanup()
+static void cleanup(void)
{
agxbfree(&ps_xb);
}
#endif
extern gdImagePtr gd_getshapeimage(char *name);
-extern void gd_freeusershapes();
+extern void gd_freeusershapes(void);
static gdImagePtr im;
Curnode = n;
}
-static void gd_end_node()
+static void gd_end_node(void)
{
Curnode = NULL;
}
return val->im;
}
-void gd_freeusershapes()
+void gd_freeusershapes(void)
{
if (ImageDict) {
dtclose(ImageDict);
/* error_context:
* Print the last 2 "token"s seen.
*/
-static void error_context()
+static void error_context(void)
{
agxbclear(state.xb);
if (state.prevtoklen > 0)
#include <agxbuf.h>
extern int initHTMLlexer(char *, agxbuf *);
- extern int htmllex();
- extern int htmllineno();
- extern int clearHTMLlexer();
+ extern int htmllex(void);
+ extern int htmllineno(void);
+ extern int clearHTMLlexer(void);
void htmlerror(const char *);
#endif
#include "htmltable.h"
#include "htmllex.h"
-extern int yyparse();
+extern int yyparse(void);
static struct {
htmllabel_t* lbl; /* Generated label */
/* addRow:
* Add new cell row to current table.
*/
-static void
-addRow ()
+static void addRow (void)
{
Dt_t* dp = dtopen(&cellDisc, Dtqueue);
htmltbl_t* tbl = HTMLstate.tblstack;
/* setCell:
* Set cell body and type and attach to row
*/
-static void
-setCell (htmlcell_t* cp, void* obj, int kind)
+static void setCell (htmlcell_t* cp, void* obj, int kind)
{
pitem* sp = NEW(pitem);
htmltbl_t* tbl = HTMLstate.tblstack;
* the inmost value is the one used, we only use a new value
* if the attribute has not already been assigned.
*/
-static htmlfont_t*
-setFont (htmlfont_t* fp, htmlfont_t* curf)
+static htmlfont_t* setFont (htmlfont_t* fp, htmlfont_t* curf)
{
if (curf) {
if (curf->size < 0.0) curf->size = fp->size;
/* fontText:
* Attach font information to text.
*/
-static void
-fontText (htmlfont_t* fp, htmltxt_t* cp)
+static void fontText (htmlfont_t* fp, htmltxt_t* cp)
{
cp->font = setFont (fp, cp->font);
}
/* fontTable:
* Attach font information to table.
*/
-static void
-fontTable (htmlfont_t* fp, htmltbl_t* cp)
+static void fontTable (htmlfont_t* fp, htmltbl_t* cp)
{
cp->font = setFont (fp, cp->font);
}
/* mkLabel:
* Create label, given body and type.
*/
-static htmllabel_t*
-mkLabel (void* obj, int kind)
+static htmllabel_t* mkLabel (void* obj, int kind)
{
htmllabel_t* lp = NEW(htmllabel_t);
* tables. Note that we use the free_citem function to actually
* free cells.
*/
-static void
-cleanup ()
+static void cleanup (void)
{
htmltbl_t* tp = HTMLstate.tblstack;
htmltbl_t* next;
/* nonSpace:
* Return 1 if s contains a non-space character.
*/
-static int
-nonSpace (char* s)
+static int nonSpace (char* s)
{
char c;
0
};
-PointSet *newPS()
+PointSet *newPS(void)
{
return (dtopen(&intPairDisc, Dtoset));
}
0
};
-PointMap *newPM()
+PointMap *newPM(void)
{
MPairDisc *dp = GNEW(MPairDisc);
typedef Dict_t PointSet;
typedef Dict_t PointMap;
- extern PointSet *newPS();
+ extern PointSet *newPS(void);
extern void freePS(PointSet *);
extern void insertPS(PointSet *, point);
extern void addPS(PointSet *, int, int);
extern int sizeOf(PointSet *);
extern point *pointsOf(PointSet *);
- extern PointMap *newPM();
+ extern PointMap *newPM(void);
extern void clearPM(PointMap *);
extern void freePM(PointMap *);
extern int insertPM(PointMap *, int, int, int);
#include <stdio.h>
extern void epsf_define(FILE * of);
-extern void ps_freeusershapes();
+extern void ps_freeusershapes(void);
extern ps_image_t *ps_usershape(char *shapeimagefile);
static int N_pages, Cur_page;
return (ps_image_size(n->graph, shapeimagefile));
}
-void ps_freeusershapes()
+void ps_freeusershapes(void)
{
if (EPSF_contents) {
dtclose(EPSF_contents);
extern void update(edge_t * e, edge_t * f);
extern void updateBB(graph_t * g, textlabel_t * lp);
extern void use_library(char *);
- extern char *username();
+ extern char *username(void);
extern point user_shape_size(node_t * n, char *shapefile);
extern void write_attributed_dot(graph_t *g, FILE *f);
extern void write_canonical_dot(graph_t *g, FILE *f);
extern pointf sub_pointfs(pointf, pointf);
extern void toggle(int);
- extern int test_toggle();
+ extern int test_toggle(void);
#ifndef DISABLE_CODEGENS
#ifndef HAVE_GD_FREETYPE
extern int builtinFontHt(double fontsz);
extern int builtinFontWd(double fontsz);
#endif
- extern codegen_info_t *first_codegen();
- extern codegen_info_t *next_codegen();
+ extern codegen_info_t *first_codegen(void);
+ extern codegen_info_t *next_codegen(codegen_info_t * p);
#endif
#undef extern
* AT&T Research, Florham Park NJ *
**********************************************************/
+/* for sincos */
+#define _GNU_SOURCE 1
+
#include "render.h"
#include "gvc.h"
#include "htmltable.h"
#define RBCONST 12
#define RBCURVE .5
-#ifndef HAVE_SINCOS
-void sincos(x, s, c)
-double x, *s, *c;
-{
- *s = sin(x);
- *c = cos(x);
-}
-#else
+#ifdef HAVE_SINCOS
extern void sincos(double x, double *s, double *c);
+#else
+# define sincos(x,s,c) *s = sin(x); *c = cos(x)
#endif
static port Center = { {0, 0}, -1, 0, 0, 0, 0 };
static unsigned char userbuf[SMALLBUF];
static agxbuf xb;
-static void cleanup()
+static void cleanup(void)
{
agxbfree(&xb);
}
}
static void
-finishSegment ()
+finishSegment (void)
{
point p0 = ND_coord_i(Curedge->tail);
point p1 = ND_coord_i(Curedge->head);
vtx_font(&cstk[SP]);
}
-static void vtx_style()
+static void vtx_style(void)
{
context_t *cp;
cp->color_r, cp->color_g, cp->color_b, cp->penwidth);
}
-static void vtx_node_style()
+static void vtx_node_style(void)
{
fprintf(Output_file, " (rotation 0)\n" " (locked F)\n");
vtx_style();
cluster_g = sg;
}
-static void xd_end_cluster()
+static void xd_end_cluster(void)
{
agxset(cluster_g, g_draw->index, agxbuse(&outbuf));
if (GD_label(cluster_g))
(MC_SCALE * (ND_lw_i(u) + prt.p.x)) / (ND_lw_i(u) + ND_rw_i(u));
prt.constrained = FALSE;
prt.defined = TRUE;
+ prt.clip = 0;
+ prt.theta = 0;
/* compute ARR_PORT at a distance ARR_LEN away from the boundary */
if ((arr_prt.defined = arr_len && TRUE)) {
extern Agraph_t *agmemread(char *);
extern int agwrite(Agraph_t *, FILE *);
extern int agerrors(void);
- extern Agraph_t *agprotograph();
+ extern Agraph_t *agprotograph(void);
extern Agraph_t *agusergraph(Agnode_t *);
extern int agnnodes(Agraph_t *);
extern int agnedges(Agraph_t *);
typedef enum { AGWARN, AGERR, AGMAX, AGPREV } agerrlevel_t;
extern agerrlevel_t agerrno;
extern void agseterr(agerrlevel_t);
- extern char *aglasterr();
+ extern char *aglasterr(void);
extern int agerr(agerrlevel_t level, char *fmt, ...);
extern void agerrorf(char *fmt, ...);
extern void agwarningf(char *fmt, ...);