[FreeBSD] Include <stdio.h>, needed for printf().

This commit is contained in:
Davide Italiano
2016-02-29 18:47:51 +00:00
parent 05f864ec26
commit 59ed25c208

View File

@@ -15,6 +15,10 @@
#include <atomic>
#include <stdint.h>
#if defined(__FreeBSD__)
#include <stdio.h>
#endif
/// This is a node in a concurrent linked list.
template <class ElemTy> struct ConcurrentListNode {
ConcurrentListNode(ElemTy Elem) : Payload(Elem), Next(nullptr) {}