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

#include <stdio.h>

#include "stdc.h"
using jtutil::error_exit;

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