Alessandro Bonazzi e075990ed3 Patch level : 12.0 no-patch
Files correlati     :
Commento            :

Aggiunto il preprocessore c++ mcpp per sostituire il compilatore nella compilazione delle maschere.
2020-11-28 16:24:08 +01:00

14 lines
364 B
C

/* mcpp_out.h: declarations of OUTDEST data types for MCPP */
#ifndef _MCPP_OUT_H
#define _MCPP_OUT_H
/* Choices for output destination */
typedef enum {
OUT, /* ~= fp_out */
ERR, /* ~= fp_err */
DBG, /* ~= fp_debug */
NUM_OUTDEST
} OUTDEST;
#endif /* _MCPP_OUT_H */