blob: 21b165c16796bcc58c20e29b118787e6ab075026 (
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
|