Files
yait/edef.h
2025-11-22 10:22:26 -05:00

19 lines
255 B
C

/* edef.h
*
* Global variable definition
*
* written by vx-clutch
*/
#ifndef EDEF_H_
#define EDEF_H_
/* Initialized global external declarations. */
extern int git;
/* Other constants declarations */
enum { SINGLE, FULL };
#endif /* EDEF_H_ */