Skip to content

Commit

Permalink
utils/sdp: fixes includes
Browse files Browse the repository at this point in the history
compile failed on arm64 macOS 12&13
  • Loading branch information
MartinPulec committed Feb 6, 2024
1 parent 772ef5d commit bba976d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/utils/sdp.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,18 @@
*/

#include <assert.h>
#include <errno.h>
#include <pthread.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef _WIN32
#include <winsock2.h>
#include <ws2tcpip.h>
#else
#include <netdb.h>
#include <sys/socket.h>
#endif

#include "audio/types.h"
Expand Down

0 comments on commit bba976d

Please sign in to comment.