blob: 59d5c7e3b65c3744e9807a85dbec1ae136edbb8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef _PROTOS_ADD_H
#define _PROTOS_ADD_H
#include "protos.h"
/****** additional global variables ******
*
* We can declare 'dvistack' and 'name' only in some files, because
* otherwise they would conflict with equally named static variables.
*/
/* global variables from dopage.c */
extern struct dvistack {
integer hh, vv;
integer h, v, w, x, y, z;
} stack[];
/* global variables from loadfont.c */
extern char name[];
#endif
|