mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-22 22:44:14 -04:00
7e800791a1
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.
9 lines
146 B
C
9 lines
146 B
C
#ifndef BUILD_H
|
|
#define BUILD_H
|
|
|
|
extern const char gBuildCreator[];
|
|
extern const char gBuildDate[];
|
|
extern const char gBuildMakeOption[];
|
|
|
|
#endif
|