We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edd7e84 commit d04aaa9Copy full SHA for d04aaa9
.travis.yml
@@ -5,4 +5,4 @@ compiler:
5
6
script:
7
- cmake .
8
- - ./tests
+ - make check
block.c
@@ -1,5 +1,6 @@
1
#include <stdlib.h>
2
#include <string.h>
3
+#include <stdint.h>
4
#include "config.h"
#include "block.h"
tree.h
@@ -1,6 +1,7 @@
// Left-leaning red-black tree
// (c) Jason Evans - http://www.canonware.com/rb/
+#include <sys/types.h>
#include <assert.h>
#define rb_node(a_type) \
0 commit comments