Rev 8195 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 8195 | Rev 14873 | ||
---|---|---|---|
Line 40... | Line 40... | ||
40 | void (*processor)(char *p, int ptype); |
40 | void (*processor)(char *p, int ptype); |
41 | } specialfn[]; |
41 | } specialfn[]; |
42 | 42 | ||
43 | extern int specialfn_no; |
43 | extern int specialfn_no; |
44 | extern int prepcnt; |
44 | extern int prepcnt; |
- | 45 | ||
- | 46 | /** |
|
- | 47 | * GK 2020-04-18 |
|
- | 48 | * bare variables must not be declared in header files. So this is |
|
- | 49 | * commented out and replaced by an extern clause. |
|
45 | void (*sp_error)(char *s); |
50 | void (*sp_error)(char *s); |
- | 51 | * the actual variable "sp_error" is defined in sp.c, line 19 |
|
- | 52 | **/ |
|
- | 53 | extern void (*sp_error)(char *s); |