Chromium Code Reviews| Index: src/untrusted/nosys/pipe.c |
| diff --git a/src/untrusted/nosys/pipe.c b/src/untrusted/nosys/pipe.c |
| deleted file mode 100644 |
| index ea4229a9577bcee28d0639ded26911c09f1f9b1b..0000000000000000000000000000000000000000 |
| --- a/src/untrusted/nosys/pipe.c |
| +++ /dev/null |
| @@ -1,21 +0,0 @@ |
| -/* |
| - * Copyright 2010 The Native Client Authors. All rights reserved. |
| - * Use of this source code is governed by a BSD-style license that can |
| - * be found in the LICENSE file. |
| - */ |
| - |
| - |
| -/* |
| - * Stub routine for `pipe' for porting support. |
| - */ |
| - |
| -#include <unistd.h> |
| -#include <errno.h> |
| - |
| -int pipe(int fd[2]) { |
| - errno = ENOSYS; |
| - return -1; |
| -} |
| - |
| -#include "native_client/src/untrusted/nosys/warning.h" |
| -stub_warning(pipe); |