mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-03 12:35:58 +00:00
13 lines
288 B
C++
13 lines
288 B
C++
#include <stdio.h>
|
|
|
|
#include <ConditionalMacros.h>
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
FILE* file = fopen("BuildSystemInfo.pm", "w");
|
|
if (file != NULL) {
|
|
fprintf(file, "$UNIVERSAL_INTERFACES_VERSION=0x%04X;\n", UNIVERSAL_INTERFACES_VERSION);
|
|
fclose(file);
|
|
}
|
|
}
|