work related to moving some file utils into the new file_utils convenience lib

This commit is contained in:
Josh Coalson
2002-10-30 06:18:13 +00:00
parent cf6e2ca7b8
commit 5843fc21fa
24 changed files with 32 additions and 212 deletions

View File

@@ -23,6 +23,7 @@ extern "C" {
#include "FLAC/assert.h"
#include "FLAC/metadata.h" // for ::FLAC__metadata_object_is_equal()
#include "FLAC++/decoder.h"
#include "share/file_utils.h"
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
@@ -2187,7 +2188,7 @@ bool test_decoders()
if(!test_file_decoder())
return false;
(void) file_utils__remove_file(flacfilename_);
(void) FLAC__file_utils_remove_file(flacfilename_);
free_metadata_blocks_();
return true;