Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 278 Bytes

version.h

File metadata and controls

11 lines (7 loc) · 278 Bytes
 
Oct 2, 2000
Oct 2, 2000
1
2
3
4
5
6
7
8
9
10
11
#define GC_VERSION_MAJOR 5
#define GC_VERSION_MINOR 2
#define GC_ALPHA_VERSION GC_NOT_ALPHA
# define GC_NOT_ALPHA 0xff
#ifndef GC_NO_VERSION_VAR
unsigned GC_version = ((GC_VERSION_MAJOR << 16) | (GC_VERSION_MINOR << 8) | GC_ALPHA_VERSION);
#endif /* GC_NO_VERSION_VAR */