#include string.h

This commit is contained in:
Josh Coalson 2001-11-16 02:17:52 +00:00
parent 2e1d157396
commit 843f1bff1a
3 changed files with 4 additions and 0 deletions

View File

@ -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"

View File

@ -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)
{

View File

@ -20,6 +20,8 @@
int main(int argc, char *argv[])
{
(void)argc, (void)argv;
if(0 != test_bitbuffer())
return 1;
return 0;