diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2016-10-05 16:34:19 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2016-12-22 11:56:35 +0100 |
| commit | 4efd8084ecf47132ba51577ee3f79d2ed2637b44 (patch) | |
| tree | 09f6c30c079be1de57af19c450dd6cb5fa4ff036 /core/map.c | |
| parent | cca3d303023d53b5d0af96751f379b2d0e28cd18 (diff) | |
| download | vis-4efd8084ecf47132ba51577ee3f79d2ed2637b44.tar.gz vis-4efd8084ecf47132ba51577ee3f79d2ed2637b44.tar.xz | |
test/core: tweak tests to work with tis-interpreter
$ tis-inertpreter.sh --cc "-I. -I../.." text.c ../../text.c
or more conveniently
$ make tis
Diffstat (limited to 'core/map.c')
| -rw-r--r-- | core/map.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,9 +1,9 @@ -#include <ccan/tap/tap.h> #include <stddef.h> #include <stdbool.h> #include <string.h> #include <stdio.h> #include <errno.h> +#include "tap.h" #include "map.h" static bool get(Map *map, const char *key, const void *data) { |
