macos: Add missing import statement

Add missing import of util.h. This fixes a build failure with the
Xcode 12 command line tools which manifests as follows:

  error: implicit declaration of function 'pa_thread_make_realtime'
  is invalid in C99 [-Werror,-Wimplicit-function-declaration]

Ref https://trac.macports.org/ticket/61107
This commit is contained in:
Ralph Seichter 2020-09-10 20:25:05 +02:00 committed by Tanu Kaskinen
parent 410db7d216
commit 0050e5863a

View file

@ -27,6 +27,7 @@
#include <config.h> #include <config.h>
#endif #endif
#include <pulse/util.h>
#include <pulse/xmalloc.h> #include <pulse/xmalloc.h>
#include <pulsecore/sink.h> #include <pulsecore/sink.h>