2002-10-03 22:26:50 +00:00
|
|
|
# /* Copyright (C) 2001
|
|
|
|
# * Housemarque Oy
|
|
|
|
# * http://www.housemarque.com
|
|
|
|
# *
|
2004-09-13 15:51:29 +00:00
|
|
|
# * Distributed under the Boost Software License, Version 1.0. (See
|
|
|
|
# * accompanying file LICENSE_1_0.txt or copy at
|
|
|
|
# * http://www.boost.org/LICENSE_1_0.txt)
|
2002-10-03 22:26:50 +00:00
|
|
|
# */
|
|
|
|
#
|
|
|
|
# /* Revised by Paul Mensonides (2002) */
|
|
|
|
#
|
|
|
|
# /* See http://www.boost.org for most recent version. */
|
|
|
|
#
|
|
|
|
# ifndef BOOST_LIBS_PREPROCESSOR_REGRESSION_TEST_H
|
|
|
|
# define BOOST_LIBS_PREPROCESSOR_REGRESSION_TEST_H
|
|
|
|
#
|
|
|
|
# include <boost/preprocessor/cat.hpp>
|
|
|
|
#
|
|
|
|
# define BEGIN typedef int BOOST_PP_CAT(test_, __LINE__)[((
|
|
|
|
# define END )==1) ? 1 : -1];
|
|
|
|
|
2011-06-26 13:07:20 +00:00
|
|
|
#if defined(__cplusplus)
|
2002-10-03 22:26:50 +00:00
|
|
|
#include <cstdio>
|
2004-08-01 06:27:56 +00:00
|
|
|
#if !defined(_STLP_MSVC) || _STLP_MSVC >= 1300
|
2002-10-03 22:26:50 +00:00
|
|
|
namespace std { }
|
|
|
|
using namespace std;
|
2004-08-01 06:27:56 +00:00
|
|
|
#endif
|
2011-06-26 13:07:20 +00:00
|
|
|
#else
|
|
|
|
#include <stdio.h>
|
|
|
|
#endif
|
2002-10-03 22:26:50 +00:00
|
|
|
|
|
|
|
int main(void) {
|
2003-12-02 00:43:36 +00:00
|
|
|
printf("pass " __TIME__);
|
|
|
|
return 0;
|
2002-10-03 22:26:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# endif
|