blob: 2edb3a75615576f086562ee94974605f2c9eb09c (
plain) (
blame)
1
2
3
4
5
6
|
#include "physicalmemory.h"
const char* ffDetectPhysicalMemory(FFPhysicalMemoryOptions* options, FFlist* result) {
FF_UNUSED(options, result);
return "Not supported on this platform";
}
|