Another small test tweak.
[exim.git] / test / src / iefbr14.c
1 /* $Cambridge: exim/test/src/iefbr14.c,v 1.1 2006/02/06 16:24:05 ph10 Exp $ */
2
3 /* This is a program that does nothing, and returns zero. It is exactly the
4 same as the Unix "true" utility. Why do we need it? Well, not all systems have
5 "true" in the same place, and sometimes it's a shell built-in. Given that we
6 have little utilities anyway, it's just easier to do this. As for its name,
7 those with IBM mainframe memories will know where that comes from. */
8
9 int main(void) { return 0; }
10
11 /* End */