ppc-lang/include/ppc.hh

13 lines
218 B
C++
Raw Normal View History

2022-09-19 07:34:19 +00:00
#ifndef PPC_H
#define PPC_H 1
2023-02-10 14:10:34 +00:00
#include "lang/version.hh"
namespace ppc {
static const version_t VERSION(
PPC_VERSION_MAJOR,
PPC_VERSION_MINOR,
PPC_VERSION_BUILD
);
}
2022-09-19 07:34:19 +00:00
#endif