| Index: src/untrusted/nosys/lstat.c
|
| diff --git a/src/untrusted/nosys/lstat.c b/src/untrusted/nosys/lstat.c
|
| deleted file mode 100644
|
| index f1220afa6e69d1c1c918d4bbc6a30389c45289d3..0000000000000000000000000000000000000000
|
| --- a/src/untrusted/nosys/lstat.c
|
| +++ /dev/null
|
| @@ -1,23 +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 `lstat' for porting support.
|
| - */
|
| -
|
| -#include <sys/types.h>
|
| -#include <sys/stat.h>
|
| -#include <unistd.h>
|
| -#include <errno.h>
|
| -
|
| -int lstat(const char *path, struct stat *buf) {
|
| - errno = ENOSYS;
|
| - return -1;
|
| -}
|
| -
|
| -#include "native_client/src/untrusted/nosys/warning.h"
|
| -stub_warning(lstat);
|
|
|