1/*
2 * Copyright (c) 2010 Apple Inc. All rights reserved.
3 *
4 * @APPLE_LLVM_LICENSE_HEADER@
5 */
6
7// BlockTest.cpp : Defines the entry point for the console application.
8//
9
10#include "stdafx.h"
11
12
13extern int main(int argc, _TCHAR *argv[]);
14
15int _tmain(int argc, _TCHAR* argv[])
16{
17    main(argc, argv);
18	return 0;
19}
20