Chromium Code Reviews| Index: src/untrusted/nosys/fchdir.c |
| diff --git a/src/untrusted/nosys/fchdir.c b/src/untrusted/nosys/fchdir.c |
| deleted file mode 100644 |
| index a3220feb0019d4548b2675372cab1cadb88fcfbb..0000000000000000000000000000000000000000 |
| --- a/src/untrusted/nosys/fchdir.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 `fchdir' for porting support. |
| - */ |
| - |
| -#include <unistd.h> |
| -#include <errno.h> |
| - |
| -int fchdir(int fd) { |
| - errno = ENOSYS; |
| - return -1; |
| -} |
| - |
| -#include "native_client/src/untrusted/nosys/warning.h" |
| -stub_warning(fchdir); |
| - |