12 lines
228 B
C++
12 lines
228 B
C++
#pragma once
|
|
|
|
// Define operating system macros
|
|
#define YYCC_OS_WINDOWS 2
|
|
#define YYCC_OS_LINUX 3
|
|
// Check current operating system.
|
|
#if defined(_WIN32)
|
|
#define YYCC_OS YYCC_OS_WINDOWS
|
|
#else
|
|
#define YYCC_OS YYCC_OS_LINUX
|
|
#endif
|