summaryrefslogtreecommitdiff
path: root/test/src/iefbr14.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/src/iefbr14.c')
-rw-r--r--test/src/iefbr14.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/src/iefbr14.c b/test/src/iefbr14.c
new file mode 100644
index 000000000..959c370be
--- /dev/null
+++ b/test/src/iefbr14.c
@@ -0,0 +1,11 @@
+/* $Cambridge: exim/test/src/iefbr14.c,v 1.1 2006/02/06 16:24:05 ph10 Exp $ */
+
+/* This is a program that does nothing, and returns zero. It is exactly the
+same as the Unix "true" utility. Why do we need it? Well, not all systems have
+"true" in the same place, and sometimes it's a shell built-in. Given that we
+have little utilities anyway, it's just easier to do this. As for its name,
+those with IBM mainframe memories will know where that comes from. */
+
+int main(void) { return 0; }
+
+/* End */