| Index: src/untrusted/nosys/execvp.c
|
| diff --git a/src/untrusted/nosys/execvp.c b/src/untrusted/nosys/execvp.c
|
| deleted file mode 100644
|
| index 0ac081a326d6cb1e39d8689743e8c3800ca8fba7..0000000000000000000000000000000000000000
|
| --- a/src/untrusted/nosys/execvp.c
|
| +++ /dev/null
|
| @@ -1,20 +0,0 @@
|
| -/*
|
| - * Copyright (c) 2012 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 `execvp' for porting support.
|
| - */
|
| -
|
| -#include <unistd.h>
|
| -#include <errno.h>
|
| -
|
| -int execvp(const char *file, char * const argv[]) {
|
| - errno = ENOSYS;
|
| - return -1;
|
| -}
|
| -
|
| -#include "native_client/src/untrusted/nosys/warning.h"
|
| -stub_warning(execvp);
|
|
|