Make {bounce,warn}_message_file expanded. Bug 2522
[exim.git] / test / src / iefbr14.c
CommitLineData
c55a77db
PH
1/* This is a program that does nothing, and returns zero. It is exactly the
2same as the Unix "true" utility. Why do we need it? Well, not all systems have
3"true" in the same place, and sometimes it's a shell built-in. Given that we
4have little utilities anyway, it's just easier to do this. As for its name,
5those with IBM mainframe memories will know where that comes from. */
6
7int main(void) { return 0; }
8
9/* End */