Fast and reasonably complete (framebuffer) terminal emulator (Zig fork)

Do not redefine FLANTERM_IN_FLANTERM if already defined

Mintsuki fa3ee697 4cacad16

Changed files
+4
src
flanterm_backends
+2
src/flanterm.c
···
#include <stddef.h>
#include <stdbool.h>
+
#ifndef FLANTERM_IN_FLANTERM
#define FLANTERM_IN_FLANTERM
+
#endif
#include "flanterm.h"
+2
src/flanterm_backends/fb.c
···
#include <stddef.h>
#include <stdbool.h>
+
#ifndef FLANTERM_IN_FLANTERM
#define FLANTERM_IN_FLANTERM
+
#endif
#include "../flanterm.h"
#include "fb.h"