Skip to content

Commit d04aaa9

Browse files
committed
One more time
1 parent edd7e84 commit d04aaa9

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ compiler:
55

66
script:
77
- cmake .
8-
- ./tests
8+
- make check

block.c

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#include <stdlib.h>
22
#include <string.h>
3+
#include <stdint.h>
34

45
#include "config.h"
56
#include "block.h"

tree.h

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Left-leaning red-black tree
22
// (c) Jason Evans - http://www.canonware.com/rb/
33

4+
#include <sys/types.h>
45
#include <assert.h>
56

67
#define rb_node(a_type) \

0 commit comments

Comments
 (0)