freebsd-ports/x11/rxvt/files/patch-grkelot.c
Ed Schouten 810dc2911d Multiple fixes to rxvt:
- Fix compilation on -CURRENT by letting it use posix_openpt() to
  allocate PTYs.
- Fix compilation when enabling WITH_GREEK.

PR:	ports/132928
Approved by: port maintainer
2009-03-23 21:08:37 +00:00

27 lines
759 B
C

--- src/grkelot.c
+++ src/grkelot.c
@@ -80,10 +80,6 @@
#define MAX_SWITCHER 2U /* per state */
#define MAX_VAL 256 /* for temp allocation */
-typedef unsigned char u_char;
-typedef unsigned int u_int;
-typedef unsigned long u_long;
-
typedef struct s_xlat {
u_int first, last;
u_int *pval; /* array of translated values */
@@ -158,9 +154,9 @@
#define NUM_XLAT_TYPES (sizeof(xlat_type) / sizeof(xlat_type[0]))
-static void kstate_add_xlat(char *str);
-static void kstate_add_switcher(char *str);
-static void kstate_set_life(char *str);
+void kstate_add_xlat(char *str);
+void kstate_add_switcher(char *str);
+void kstate_set_life(char *str);
/* --- Functions ------------- */
/* INTPROTO */