build: use configured include paths

This commit is contained in:
2026-08-14 16:17:07 +09:00
parent 4e07699460
commit f5dc552c08
8 changed files with 13 additions and 13 deletions

View File

@@ -7,7 +7,7 @@
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#include <time.h> #include <time.h>
#include "../ipc.h" #include "ipc.h"
typedef struct Key Key; typedef struct Key Key;
struct Key { struct Key {

View File

@@ -20,7 +20,7 @@
#include <time.h> #include <time.h>
#include <unistd.h> #include <unistd.h>
#include "../ipc.h" #include "ipc.h"
enum enum
{ {

View File

@@ -20,7 +20,7 @@
#include <time.h> #include <time.h>
#include <unistd.h> #include <unistd.h>
#include "../ipc.h" #include "ipc.h"
enum enum
{ {

View File

@@ -1,5 +1,5 @@
#include "../strans.c" #include "strans.c"
#include "../cutest/cutest.h" #include "cutest/cutest.h"
extern Lang testvi; extern Lang testvi;

View File

@@ -1,5 +1,5 @@
#include "../ibus.c" #include "ibus.c"
#include "../cutest/cutest.h" #include "cutest/cutest.h"
#include <errno.h> #include <errno.h>

View File

@@ -19,7 +19,7 @@
#include <time.h> #include <time.h>
#include <unistd.h> #include <unistd.h>
#include "../ipc.h" #include "ipc.h"
enum enum
{ {

View File

@@ -3,8 +3,8 @@
#include <sys/stat.h> #include <sys/stat.h>
#include <unistd.h> #include <unistd.h>
#include "../srv.c" #include "srv.c"
#include "../cutest/cutest.h" #include "cutest/cutest.h"
void testengineinit(int); void testengineinit(int);
void testenginehandle(Keyreq*); void testenginehandle(Keyreq*);

View File

@@ -1,6 +1,6 @@
#include "../cutest/cutest.h" #include "cutest/cutest.h"
#include "../dat.h" #include "dat.h"
#include "../fn.h" #include "fn.h"
extern Lang testvi; extern Lang testvi;