#include string.h
This commit is contained in:
parent
2e1d157396
commit
843f1bff1a
@ -19,6 +19,7 @@
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h> /* for malloc() */
|
||||
#include <string.h> /* for memcpy()/memcmp() */
|
||||
#include "FLAC/assert.h"
|
||||
#include "protected/seekable_stream_decoder.h"
|
||||
#include "protected/stream_decoder.h"
|
||||
|
@ -17,6 +17,7 @@
|
||||
*/
|
||||
|
||||
#include "private/bitbuffer.h" /* from the libFLAC private include area */
|
||||
#include <string.h> /* for memcmp() */
|
||||
|
||||
static FLAC__bool dummy_read_callback(FLAC__byte buffer[], unsigned *bytes, void *client_data)
|
||||
{
|
||||
|
@ -20,6 +20,8 @@
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
(void)argc, (void)argv;
|
||||
|
||||
if(0 != test_bitbuffer())
|
||||
return 1;
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user