19 lines
255 B
C
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_ */
|