summaryrefslogtreecommitdiffstats
path: root/botan/build/botan/fd_unix.h
diff options
context:
space:
mode:
Diffstat (limited to 'botan/build/botan/fd_unix.h')
-rw-r--r--botan/build/botan/fd_unix.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/botan/build/botan/fd_unix.h b/botan/build/botan/fd_unix.h
new file mode 100644
index 0000000..0aed009
--- /dev/null
+++ b/botan/build/botan/fd_unix.h
@@ -0,0 +1,23 @@
+/*
+* Pipe I/O for Unix
+* (C) 1999-2007 Jack Lloyd
+*
+* Distributed under the terms of the Botan license
+*/
+
+#ifndef BOTAN_PIPE_UNIXFD_H__
+#define BOTAN_PIPE_UNIXFD_H__
+
+#include <botan/pipe.h>
+
+namespace Botan {
+
+/*
+* Unix I/O Operators for Pipe
+*/
+int operator<<(int, Pipe&);
+int operator>>(int, Pipe&);
+
+}
+
+#endif