nostrdb: Makefile: build using ccan/ versions of files.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
Rusty Russell
2024-08-17 14:57:12 +09:30
committed by Daniel D’Aquino
parent e3ca6ca5b4
commit 201cdd7edc
11 changed files with 19 additions and 20 deletions

View File

@@ -4,7 +4,6 @@
#include <string.h>
#include <limits.h>
#include <stdlib.h>
#include "talstr.h"
#include <sys/types.h>
#include <regex.h>
#include <stdarg.h>

View File

@@ -4,7 +4,7 @@
#ifdef TAL_USE_TALLOC
#include <ccan/tal/talloc/talloc.h>
#else
#include "tal.h"
#include "ccan/tal/tal.h"
#endif
#include <string.h>
#include <stdbool.h>

View File

@@ -1,8 +1,8 @@
/* Licensed under BSD-MIT - see LICENSE file for details */
#include "tal.h"
#include "../compiler.h"
#include "list.h"
#include "alignof.h"
#include "ccan/compiler/compiler.h"
#include "ccan/list/list.h"
#include "ccan/alignof/alignof.h"
#include <assert.h>
#include <stdio.h>

View File

@@ -2,11 +2,11 @@
#ifndef CCAN_TAL_H
#define CCAN_TAL_H
#include "../config.h"
#include "../compiler.h"
#include "likely.h"
#include "typesafe_cb.h"
#include "str.h"
#include "take.h"
#include "ccan/compiler/compiler.h"
#include "ccan/likely/likely.h"
#include "ccan/typesafe_cb/typesafe_cb.h"
#include "ccan/str/str.h"
#include "ccan/take/take.h"
#include <stdlib.h>
#include <stdbool.h>