stk-code_catmod/lib/mcpp/mcpp_out.h
2020-01-03 12:46:35 +08: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 */