Chromium Code Reviews| Index: src/untrusted/nosys/fork.c |
| diff --git a/src/untrusted/nosys/fork.c b/src/untrusted/nosys/fork.c |
| deleted file mode 100644 |
| index 235bfa8bfd6842c5670acc7389907c13e6a00832..0000000000000000000000000000000000000000 |
| --- a/src/untrusted/nosys/fork.c |
| +++ /dev/null |
| @@ -1,22 +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 `fork' for porting support. |
| - */ |
| - |
| -#include <sys/types.h> |
| -#include <unistd.h> |
| -#include <errno.h> |
| - |
| -pid_t fork(void) { |
| - errno = ENOSYS; |
| - return -1; |
| -} |
| - |
| -#include "native_client/src/untrusted/nosys/warning.h" |
| -stub_warning(fork); |