altos/draw: Use <> for include files
authorKeith Packard <keithp@keithp.com>
Mon, 27 Feb 2023 22:38:09 +0000 (14:38 -0800)
committerKeith Packard <keithp@keithp.com>
Mon, 27 Feb 2023 22:39:39 +0000 (14:39 -0800)
Signed-off-by: Keith Packard <keithp@keithp.com>
src/draw/font-convert
src/draw/test-frame.c

index c29cf87cef6314cf6ae19fb1784bd5341e219a59..891331291b6c179235f8748d2d5d9c396deaa57f 100755 (executable)
@@ -138,7 +138,7 @@ void print_font(file out, font_t font, string font_name) {
                if (pos[i] == -1)
                        pos[i] = pos[font.default_char];
 
-       fprintf(out, "#include \"ao_draw.h\"\n");
+       fprintf(out, "#include <ao_draw.h>\n");
        fprintf(out, "static const uint8_t %s_bytes[%d] = {", font_name, dim(bytes));
        for (int b = 0; b < dim(bytes); b++) {
                if ((b & 15) == 0)
index 3b764eb37480b81dbbcc8286981d1e6aa5997d64..a90dfc74543593360590f0e2fa07435d48786f45 100644 (file)
@@ -30,7 +30,7 @@
 #define PASS_SETUP
 
 #include "frame.c"
-#include "ao_draw.h"
+#include <ao_draw.h>
 
 #include <sys/ipc.h>
 #include <sys/shm.h>