Files
mm/include/build.h
T
Gabriel Ravier 7e800791a1 Correctly type the global char arrays in build.h as const (#1827)
Given that these arrays are typed as const in in build.c
(and in OOT's include/build.h), it seems logical to also type them as
const here.
2025-11-09 11:12:50 -03:00

9 lines
146 B
C

#ifndef BUILD_H
#define BUILD_H
extern const char gBuildCreator[];
extern const char gBuildDate[];
extern const char gBuildMakeOption[];
#endif