]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgfortran/intrinsics/getXid.c
Update copyright years.
[thirdparty/gcc.git] / libgfortran / intrinsics / getXid.c
CommitLineData
4c0c6b9f 1/* Wrapper for the unix get{g,p,u}id functions.
8d9254fc 2Copyright (C) 2004-2020 Free Software Foundation, Inc.
4c0c6b9f
SK
3
4This file is part of the GNU Fortran 95 runtime library (libgfortran).
5
6Libgfortran is free software; you can redistribute it and/or
57dea9f6 7modify it under the terms of the GNU General Public
4c0c6b9f 8License as published by the Free Software Foundation; either
748086b7 9version 3 of the License, or (at your option) any later version.
4c0c6b9f
SK
10
11Libgfortran is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
57dea9f6 14GNU General Public License for more details.
4c0c6b9f 15
748086b7
JJ
16Under Section 7 of GPL version 3, you are granted additional
17permissions described in the GCC Runtime Library Exception, version
183.1, as published by the Free Software Foundation.
19
20You should have received a copy of the GNU General Public License and
21a copy of the GCC Runtime Library Exception along with this program;
22see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23<http://www.gnu.org/licenses/>. */
4c0c6b9f 24
36ae8a61 25#include "libgfortran.h"
4c0c6b9f 26
4c0c6b9f
SK
27#if HAVE_UNISTD_H
28#include <unistd.h>
29#endif
30
86ab6320 31#ifdef __MINGW32__
2cdc88b6 32#define HAVE_GETPID 1
86ab6320
FXC
33#include <process.h>
34#endif
35
4c0c6b9f 36#ifdef HAVE_GETGID
7d7b8bfe
RH
37extern GFC_INTEGER_4 PREFIX(getgid) (void);
38export_proto_np(PREFIX(getgid));
39
40GFC_INTEGER_4
41PREFIX(getgid) (void)
4c0c6b9f 42{
7d7b8bfe 43 return getgid ();
4c0c6b9f
SK
44}
45#endif
46
47#ifdef HAVE_GETPID
7d7b8bfe
RH
48extern GFC_INTEGER_4 PREFIX(getpid) (void);
49export_proto_np(PREFIX(getpid));
50
51GFC_INTEGER_4
52PREFIX(getpid) (void)
4c0c6b9f 53{
7d7b8bfe 54 return getpid ();
4c0c6b9f
SK
55}
56#endif
57
58#ifdef HAVE_GETUID
7d7b8bfe
RH
59extern GFC_INTEGER_4 PREFIX(getuid) (void);
60export_proto_np(PREFIX(getuid));
61
62GFC_INTEGER_4
63PREFIX(getuid) (void)
4c0c6b9f 64{
7d7b8bfe 65 return getuid ();
4c0c6b9f
SK
66}
67#endif