Chromium Code Reviews| Index: src/untrusted/nosys/getegid.c |
| diff --git a/src/untrusted/nosys/getegid.c b/src/untrusted/nosys/getegid.c |
| deleted file mode 100644 |
| index 32d07071b594356b211854d5027da892f2ef7721..0000000000000000000000000000000000000000 |
| --- a/src/untrusted/nosys/getegid.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 `getegid' for porting support. |
| - */ |
| - |
| -#include <unistd.h> |
| -#include <sys/types.h> |
| -#include <errno.h> |
| - |
| -gid_t getegid(void) { |
| - errno = ENOSYS; |
| - return -1; |
| -} |
| - |
| -#include "native_client/src/untrusted/nosys/warning.h" |
| -stub_warning(getegid); |
|
Sam Clegg
2013/08/23 21:55:51
Can you remove all the stub warnings?
Petr Hosek
2013/08/23 22:34:56
They should be all gone already, do you seen any l
Sam Clegg
2013/08/23 22:36:33
Oops, my bad. Was reading the wrong side of the d
|