mirror of
https://github.com/nineties/planckforth
synced 2024-12-25 21:58:22 +01:00
Fixed misuse of stringify
This commit is contained in:
parent
d28cfbf955
commit
b407d70a4a
1 changed files with 2 additions and 2 deletions
|
@ -15,9 +15,9 @@
|
|||
|
||||
#define COPYRIGHT "Copyright (c) 2021 Koichi Nakamura <koichi@idein.jp>"
|
||||
#define STRINGIFY(s) #s
|
||||
#define RUNTIME_NAME STRINGIFY(COMPILER)
|
||||
#define RUNTIME_NAME(c) STRINGIFY(c)
|
||||
|
||||
#define VERSION RUNTIME_NAME ":" COPYRIGHT
|
||||
#define VERSION RUNTIME_NAME(COMPILER) ":" COPYRIGHT
|
||||
|
||||
typedef uintptr_t cell;
|
||||
typedef void (**cfa)();
|
||||
|
|
Loading…
Reference in a new issue