17 lines
497 B
C
17 lines
497 B
C
/*
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
*/
|
|
/* $Header$ */
|
|
/* L A B E L D E F I N I T I O N */
|
|
|
|
#include <em_label.h> /* obtain definition of "label" */
|
|
|
|
#define NO_LABEL (label) 0
|
|
|
|
extern label lab_count;
|
|
#define text_label() (lab_count++) /* returns a new text label */
|
|
|
|
extern label datlab_count;
|
|
#define data_label() (datlab_count++) /* returns a new data label */
|