diff options
-rw-r--r-- | deps.mk | 9 | ||||
-rw-r--r-- | src/sorted-vector.c | 3 | ||||
-rw-r--r-- | src/sorted-vector.h | 0 | ||||
-rw-r--r-- | tests/sorted-vector.c | 3 |
4 files changed, 15 insertions, 0 deletions
@@ -12,6 +12,7 @@ sources.c = \ src/math.c \ src/random.c \ src/set.c \ + src/sorted-vector.c \ src/string.c \ src/testing.c \ src/trace.c \ @@ -29,6 +30,7 @@ tests.c = \ tests/math.c \ tests/random.c \ tests/set.c \ + tests/sorted-vector.c \ tests/string.c \ tests/testing.c \ tests/trace.c \ @@ -45,6 +47,7 @@ src/logerr.o: src/logerr.h src/math.o: src/math.h src/random.o: src/random.h src/set.o: src/set.h +src/sorted-vector.o: src/sorted-vector.h src/string.o: src/string.h src/testing.o: src/testing.h src/trace.o: src/trace.h @@ -61,6 +64,7 @@ tests/logerr.o: src/logerr.c src/logerr.h tests/math.o: src/math.c src/math.h tests/random.o: src/random.c src/random.h tests/set.o: src/set.c src/set.h +tests/sorted-vector.o: src/sorted-vector.c src/sorted-vector.h tests/string.o: src/string.c src/string.h tests/testing.o: src/testing.c src/testing.h tests/trace.o: src/trace.c src/trace.h @@ -77,6 +81,7 @@ tests/logerr.a: tests/logerr.o tests/math.a: tests/math.o tests/random.a: tests/random.o tests/set.a: tests/set.o +tests/sorted-vector.a: tests/sorted-vector.o tests/string.a: tests/string.o tests/testing.a: tests/testing.o tests/trace.a: tests/trace.o @@ -93,6 +98,7 @@ tests/logerr.bin-check: tests/logerr.bin tests/math.bin-check: tests/math.bin tests/random.bin-check: tests/random.bin tests/set.bin-check: tests/set.bin +tests/sorted-vector.bin-check: tests/sorted-vector.bin tests/string.bin-check: tests/string.bin tests/testing.bin-check: tests/testing.bin tests/trace.bin-check: tests/trace.bin @@ -110,6 +116,7 @@ src/logerr.o: src/math.o: src/random.o: src/logerr.h src/util.h src/set.o: src/hash.h src/logerr.h src/tree.h src/util.h src/vector.h +src/sorted-vector.o: src/logerr.h src/util.h src/vector.h src/string.o: src/logerr.h src/math.h src/util.h src/testing.o: src/trace.o: src/logerr.h @@ -126,6 +133,7 @@ tests/logerr.o: src/testing.h src/util.h tests/slurp.h tests/math.o: src/testing.h tests/random.o: src/logerr.h src/util.h src/testing.h tests/set.o: src/hash.h src/logerr.h src/tree.h src/util.h src/vector.h src/testing.h +tests/sorted-vector.o: src/logerr.h src/util.h src/testing.h tests/string.o: src/logerr.h src/math.h src/util.h src/testing.h tests/testing.o: tests/trace.o: src/logerr.h tests/slurp.h src/testing.h src/util.h @@ -142,6 +150,7 @@ tests/logerr.a: src/testing.o src/util.o tests/slurp.o tests/math.a: src/testing.o tests/random.a: src/logerr.o src/testing.o src/util.o tests/set.a: src/catalog.o src/hash.o src/i18n.o src/logerr.o src/math.o src/random.o src/testing.o src/tree.o src/util.o src/vector.o +tests/sorted-vector.a: src/logerr.o src/testing.o src/util.o src/vector.o tests/string.a: src/logerr.o src/math.o src/testing.o src/util.o tests/testing.a: tests/trace.a: src/logerr.o tests/slurp.o src/testing.o src/util.o diff --git a/src/sorted-vector.c b/src/sorted-vector.c new file mode 100644 index 0000000..b6c5f51 --- /dev/null +++ b/src/sorted-vector.c @@ -0,0 +1,3 @@ +void +f(void) { +} diff --git a/src/sorted-vector.h b/src/sorted-vector.h new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/src/sorted-vector.h diff --git a/tests/sorted-vector.c b/tests/sorted-vector.c new file mode 100644 index 0000000..e47b14f --- /dev/null +++ b/tests/sorted-vector.c @@ -0,0 +1,3 @@ +int +main(void) { +} |