DCLibraries/src/main.cpp

26 lines
509 B
C++

#ifndef WIN32
#undef _FORTIFY_SOURCE
#include <unistd.h> // _exit(0)
#include <stdio.h>
// Must define the interpreter to be the dynamic linker
#ifdef __LP64__
#error "__LP64__ not defined for PTU5"
#else
const char service_interp[] __attribute__((section(".interp"))) = "/lib/ld-linux-armhf.so.3";
#endif
int main(int argc, char *argv[]) {
(void)argc;
(void)argv;
printf("%s %s %s\n", APP_EXTENDED_VERSION, APP_BUILD_DATE, APP_BUILD_TIME);
_exit(0);
}
#endif