1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
$NetBSD: patch-ab,v 1.3 2006/11/10 10:07:20 martin Exp $
--- libcdcx.h.orig 2005-09-09 15:38:48.000000000 +0200
+++ libcdcx.h 2006-11-10 11:01:26.000000000 +0100
@@ -21,7 +21,7 @@
int nlines;
char *title;
char **names;
- int **before, **after;
+ int64_t **before, **after;
u_long *colors;
u_long backcolor;
int nslot, ptr;
@@ -36,7 +36,7 @@
u_long create_color __P((struct xdpy *, Colormap, char *, u_long));
XFontStruct *create_font __P((struct xdpy *, char *, char *));
-struct graph *create_graph __P((int, char *, char **, int **, int **, u_long *,
+struct graph *create_graph __P((int, char *, char **, int64_t **, int64_t **, u_long *,
u_long));
int draw_barbox __P((struct xdpy *, Window, GC, XFontStruct *,
int, int, int, int, int, char **, u_long *, u_long *,
|