mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
[FreeBSD] Include <stdio.h>, needed for printf().
This commit is contained in:
@@ -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) {}
|
||||
|
||||
Reference in New Issue
Block a user