OSDN Git Service

Fix Mac build
authorJim Miller <jaggies@google.com>
Sat, 6 Jun 2015 00:34:31 +0000 (17:34 -0700)
committerJim Miller <jaggies@google.com>
Sat, 6 Jun 2015 00:40:44 +0000 (00:40 +0000)
ssize_t wasn't being picked because system headers weren't included
first.

Change-Id: I7748fedaa0c85ed9696e8ef77b0086ecf17ebe29

audio_utils/tests/fifo_tests.cpp

index aaf0769..1fea244 100644 (file)
 // Test program for audio_utils FIFO library.
 // This only tests the single-threaded aspects, not the barriers.
 
-#include <audio_utils/fifo.h>
-#include <audio_utils/sndfile.h>
 #include <limits.h>
 #include <stdlib.h>
 #include <string.h>
+#include <audio_utils/fifo.h>
+#include <audio_utils/sndfile.h>
 
 int main(int argc, char **argv)
 {