aboutsummaryrefslogtreecommitdiff
path: root/src/jtutil/test_error_exit.cc
blob: fd4e170a3ecbef0d8d94efaf370be02a24f16e37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// test_error_exit.cc -- test driver for  error_exit()  function
// $Header$

#include <stdio.h>

#include "stdc.h"

using namespace AHFinderDirect;
using jtutil::error_exit;

int main()
{
error_exit(ERROR_EXIT, "two+two=%.3f", 4.0);			/*NOTREACHED*/
return 0;
}