diff options
Diffstat (limited to 'src/win32/pipe/pipe.cpp')
-rw-r--r-- | src/win32/pipe/pipe.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/win32/pipe/pipe.cpp b/src/win32/pipe/pipe.cpp index 69a633f3a..72ffa5bfd 100644 --- a/src/win32/pipe/pipe.cpp +++ b/src/win32/pipe/pipe.cpp @@ -1,7 +1,6 @@ -/* POSIX emulation layer for Windows. + /* POSIX emulation layer for Windows. * - * (C) 2008-2017 Anope Team - * Contact us at team@anope.org + * Copyright (C) 2008-2017 Anope Team <team@anope.org> * * Please read COPYING and README for further details. */ @@ -56,6 +55,7 @@ int pipe(int fds[2]) fds[0] = cfd; fds[1] = afd; - + return 0; } + |