projects
/
umurmur.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8beca0f
)
Add missing include
author
Felix Morgner
<felix.morgner@gmail.com>
Tue, 22 Sep 2015 00:35:04 +0000
(17:35 -0700)
committer
Felix Morgner
<felix.morgner@gmail.com>
Tue, 22 Sep 2015 00:35:04 +0000
(17:35 -0700)
The include of stdlib.h was missing from memory.c resulting in a
compiler warning when using the GnuTLS backend.
src/memory.c
patch
|
blob
|
history
diff --git
a/src/memory.c
b/src/memory.c
index 8a5f6837a98a373a8e00cb730290eb6939dee35c..3d52278bd69bc4179b68836e8ffbebe3ada99487 100644
(file)
--- a/
src/memory.c
+++ b/
src/memory.c
@@
-30,6
+30,7
@@
*/
#include <stdint.h>
#include <unistd.h>
+#include <stdlib.h>
#include "log.h"
#include "memory.h"