Remove unnecessary function declaration.

R=robertphillips@google.com

Review URL: https://codereview.appspot.com/6593082

git-svn-id: http://skia.googlecode.com/svn/trunk@5851 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
tfarina@chromium.org 2012-10-08 14:41:10 +00:00
Родитель e21a68df5b
Коммит a5b7cc00b9
1 изменённых файлов: 2 добавлений и 4 удалений

Просмотреть файл

@ -9,7 +9,6 @@
#include "SkPicture.h"
#include "SkStream.h"
///////////////////////////////////////////////////////////////////////////////
static void usage() {
SkDebugf("Usage: filter -i inFile -o outFile [-h|--help]");
SkDebugf("\n\n");
@ -18,9 +17,9 @@ static void usage() {
SkDebugf(" -h|--help : Show this help message.\n");
}
int filter_main(int argc, char** argv);
// This function is not marked as 'static' so it can be referenced externally
// in the iOS build.
int filter_main(int argc, char** argv) {
SkGraphics::Init();
SkString inFile, outFile;
@ -89,4 +88,3 @@ int main(int argc, char * const argv[]) {
return filter_main(argc, (char**) argv);
}
#endif