We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78f4eee commit 4e92be7Copy full SHA for 4e92be7
2 files changed
src/rtmixer.c
@@ -1,7 +1,8 @@
1
/* See ../rtmixer_build.py, the ring buffer declarations are included there */
2
3
#include <math.h> // for llround()
4
-#include <stdbool.h> // for bool, true, false
+#include <stdio.h> // for printf()
5
+#include <string.h> // for memset()
6
#include <portaudio.h>
7
#include "rtmixer.h"
8
src/rtmixer.h
@@ -5,6 +5,9 @@ typedef unsigned long PaStreamCallbackFlags;
/* End of declarations from portaudio.h */
typedef unsigned long frame_t;
+typedef _Bool bool;
9
+#define true 1
10
+#define false 0
11
12
enum actiontype
13
{
0 commit comments