Skip to content

Commit fadd60f

Browse files
committed
Remove generated 'ih' headers from re-test
1 parent 36b9588 commit fadd60f

File tree

4 files changed

+17
-35
lines changed

4 files changed

+17
-35
lines changed

debug.c

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@
88
#include "regex.h"
99
#include "utils.h"
1010
#include "regex2.h"
11-
#include "debug.ih"
11+
12+
/* #include "debug.ih" // why generate this */
13+
/* forward refs */
14+
void regprint(regex_t *r, FILE *d);
15+
static void s_print(register struct re_guts *g, FILE *d);
16+
static char *regchar(int ch);
1217

1318
/*
1419
- regprint - print a regexp for debugging

debug.ih

Lines changed: 0 additions & 14 deletions
This file was deleted.

main.c

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,21 @@
88
#include <assert.h>
99
/* local headers */
1010
#include "regex.h"
11-
#include "main.ih"
1211
#ifdef _MSC_VER // local getopt source
1312
#include "utils\getopt.h"
1413
#endif
1514

15+
/* #include "main.ih" // why generate this? */
16+
/* forward refs */
17+
void regress(FILE *in);
18+
void try(char *f0, char *f1, char *f2, char *f3, char *f4, int opts);
19+
int options(int type, char *s);
20+
int opt(int c, char *s);
21+
void fixstr(register char *p);
22+
char *check(char *str, regmatch_t sub, char *should);
23+
static char *eprint(int err);
24+
static int efind(char *name);
25+
1626
char *progname;
1727
int debug = 0;
1828
int line = 0;

main.ih

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)