Problem: Can't build on HP-UX.
Solution: Remove modern initialization. (John Marriott)
static Frag_T st_pop __ARGS((Frag_T **p, Frag_T *stack));
/*
- * Initialize Frag_T struct.
+ * Initialize a Frag_T struct and return it.
*/
static Frag_T
frag(start, out)
nfa_state_T *start;
Ptrlist *out;
{
- Frag_T n = { start, out };
+ Frag_T n;
+
+ n.start = start;
+ n.out = out;
return n;
}
if (postfix == NULL)
return NULL;
-#define PUSH(s) st_push ((s), &stackp, stack_end)
+#define PUSH(s) st_push((s), &stackp, stack_end)
#define POP() st_pop(&stackp, stack); \
if (stackp < stack) \
{ \
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 976,
/**/
975,
/**/