summaryrefslogtreecommitdiffstats
path: root/src/detection/libc/libc_nosupport.c
blob: e4687b0723f73c45d2c124720368bb5a6725b701 (plain) (blame)
1
2
3
4
5
6
7
#include "libc.h"

const char* ffDetectLibc(FFLibcResult* result) {
    result->name = "Unknown";
    result->version = NULL;
    return NULL;
}