mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
9 lines
145 B
C
9 lines
145 B
C
#include "libc.h"
|
|
|
|
const char* ffDetectLibc(FFLibcResult* result)
|
|
{
|
|
result->name = "Unknown";
|
|
result->version = NULL;
|
|
return NULL;
|
|
}
|