#include string.h
authorJosh Coalson <jcoalson@users.sourceforce.net>
Fri, 16 Nov 2001 02:17:52 +0000 (02:17 +0000)
committerJosh Coalson <jcoalson@users.sourceforce.net>
Fri, 16 Nov 2001 02:17:52 +0000 (02:17 +0000)
src/libFLAC/seekable_stream_decoder.c
src/test_unit/bitbuffer.c
src/test_unit/main.c

index dfb5200..76cdfbc 100644 (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"
index 8881bfc..10bda37 100644 (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)
 {
index ffdd17e..9e75e5d 100644 (file)
@@ -20,6 +20,8 @@
 
 int main(int argc, char *argv[])
 {
+       (void)argc, (void)argv;
+
        if(0 != test_bitbuffer())
                return 1;
        return 0;