diff --git a/Makefile.am b/Makefile.am index e7f592d..025a17b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -22,7 +22,6 @@ src_libisofs_la_SOURCES = \ src/fsource.h \ src/fsource.c \ src/fs_local.c \ - src/fs_image.h \ src/fs_image.c \ src/messages.h \ src/messages.c \ diff --git a/demo/iso_read.c b/demo/iso_read.c index d42e55f..0af9c09 100644 --- a/demo/iso_read.c +++ b/demo/iso_read.c @@ -1,7 +1,5 @@ /* * Little program to output the contents of an iso image. - * Note that this is not an API example, but a little program for test - * purposes. */ diff --git a/src/fs_image.c b/src/fs_image.c index e16e747..c5d8f1d 100644 --- a/src/fs_image.c +++ b/src/fs_image.c @@ -11,7 +11,7 @@ * IsoDataSource to read image data. */ -#include "fs_image.h" +#include "libisofs.h" #include "error.h" #include "ecma119.h" #include "messages.h" diff --git a/src/fs_image.h b/src/fs_image.h deleted file mode 100644 index c037c7c..0000000 --- a/src/fs_image.h +++ /dev/null @@ -1,15 +0,0 @@ -/* - * Copyright (c) 2007 Vreixo Formoso - * - * This file is part of the libisofs project; you can redistribute it and/or - * modify it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation. See COPYING file for details. - */ - -#ifndef LIBISO_FS_IMAGE_H_ -#define LIBISO_FS_IMAGE_H_ - -#include "libisofs.h" -#include "fsource.h" - -#endif /*LIBISO_FS_IMAGE_H_*/