Chromium Code Reviews| Index: src/untrusted/nosys/fsync.c |
| diff --git a/src/untrusted/nosys/fsync.c b/src/untrusted/nosys/fsync.c |
| deleted file mode 100644 |
| index c63afd832d44afe40f44996544a294e22421ae8c..0000000000000000000000000000000000000000 |
| --- a/src/untrusted/nosys/fsync.c |
| +++ /dev/null |
| @@ -1,16 +0,0 @@ |
| -/* |
| - * Copyright (c) 2013 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. |
| - */ |
| - |
| -#include <errno.h> |
| -#include <unistd.h> |
| - |
| -int fsync(int fd) { |
| - errno = ENOSYS; |
| - return -1; |
| -} |
| - |
| -#include "native_client/src/untrusted/nosys/warning.h" |
| -stub_warning(fsync); |