* Renamed filters.* to filter.*.

This commit is contained in:
Sam Hocevar 2006-10-24 12:39:57 +00:00 committed by sam
parent f8a41ca9a0
commit 30b6ca2596
4 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@ bin_PROGRAMS = toilet
toilet_SOURCES = main.c \
io.c io.h \
render.c render.h \
filters.c filter.h \
filter.c filter.h \
figlet.c figlet.h
toilet_CFLAGS = `pkg-config --cflags cucul`
toilet_LDFLAGS = `pkg-config --libs cucul` @GETOPT_LIBS@ @ZLIB_LIBS@

View file

@ -22,7 +22,7 @@
#endif
#include <cucul.h>
#include "filters.h"
#include "filter.h"
void filter_autocrop(cucul_canvas_t *cv)
{

View file

@ -34,7 +34,7 @@
#include "toilet.h"
#include "render.h"
#include "figlet.h"
#include "filters.h"
#include "filter.h"
static void version(void);
#if defined(HAVE_GETOPT_H)