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