Replacing malloc.h with stdlib.h for mac builds

This commit is contained in:
Zoe Roux
2021-03-31 23:10:56 +02:00
parent 633a223e07
commit e82351f64d
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@
#include "path_helper.h"
#include "stream.h"
#include "helper.h"
#include <malloc.h>
#include <stdlib.h>
#include <libavformat/avformat.h>
#include <unistd.h>
#include <fcntl.h>

View File

@@ -6,7 +6,7 @@
#include "helper.h"
#include "compatibility.h"
#include "path_helper.h"
#include <malloc.h>
#include <stdlib.h>
static bool should_copy_to_transmuxed(enum AVMediaType codec_type)
{