diff options
Diffstat (limited to 'src/detection/font/font_nosupport.c')
| -rw-r--r-- | src/detection/font/font_nosupport.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/detection/font/font_nosupport.c b/src/detection/font/font_nosupport.c new file mode 100644 index 0000000..26f9ec6 --- /dev/null +++ b/src/detection/font/font_nosupport.c @@ -0,0 +1,7 @@ +#include "fastfetch.h" +#include "font.h" + +const char* ffDetectFontImpl(FF_A_UNUSED FFFontResult* result) { + FF_UNUSED(result); + return "Not supported on this platform"; +} |