|
|
@@ -1,7 +1,7 @@
|
|
|
#ifndef CCAN_TOOLS_H
|
|
|
#define CCAN_TOOLS_H
|
|
|
|
|
|
-#define CFLAGS "-O3 -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -I."
|
|
|
+#define CFLAGS "-O3 -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -Iccan/ -I."
|
|
|
|
|
|
char **split(const void *ctx, const char *text, const char *delims,
|
|
|
unsigned int *nump);
|
|
|
@@ -11,7 +11,5 @@ char **get_deps(const void *ctx, const char *dir);
|
|
|
void *grab_fd(const void *ctx, int fd);
|
|
|
void *grab_file(const void *ctx, const char *filename);
|
|
|
|
|
|
-#define streq(a,b) (strcmp((a),(b)) == 0)
|
|
|
-
|
|
|
#endif /* CCAN_TOOLS_H */
|
|
|
|