Mercurial > hg > octave-lojdl > gnulib-hg
annotate lib/posixver.c @ 12421:e8d2c6fc33ad
Use spaces for indentation, not tabs.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Thu, 10 Dec 2009 20:28:30 +0100 |
parents | bbbbbf4cd1c5 |
children | b5e42ef33b49 |
rev | line source |
---|---|
3731 | 1 /* Which POSIX version to conform to, for utilities. |
2 | |
7302
8a1a9361108c
* _fpending.c: Include <config.h> unconditionally, since we no
Paul Eggert <eggert@cs.ucla.edu>
parents:
6275
diff
changeset
|
3 Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software |
8a1a9361108c
* _fpending.c: Include <config.h> unconditionally, since we no
Paul Eggert <eggert@cs.ucla.edu>
parents:
6275
diff
changeset
|
4 Foundation, Inc. |
3731 | 5 |
9309
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
7302
diff
changeset
|
6 This program is free software: you can redistribute it and/or modify |
4422 | 7 it under the terms of the GNU General Public License as published by |
9309
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
7302
diff
changeset
|
8 the Free Software Foundation; either version 3 of the License, or |
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
7302
diff
changeset
|
9 (at your option) any later version. |
3731 | 10 |
11 This program is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
4422 | 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 GNU General Public License for more details. | |
3731 | 15 |
9309
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
7302
diff
changeset
|
16 You should have received a copy of the GNU General Public License |
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
7302
diff
changeset
|
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
3731 | 18 |
19 /* Written by Paul Eggert. */ | |
20 | |
7302
8a1a9361108c
* _fpending.c: Include <config.h> unconditionally, since we no
Paul Eggert <eggert@cs.ucla.edu>
parents:
6275
diff
changeset
|
21 #include <config.h> |
3731 | 22 |
4910 | 23 #include "posixver.h" |
24 | |
3731 | 25 #include <limits.h> |
26 #include <stdlib.h> | |
27 | |
6275 | 28 #include <unistd.h> |
3731 | 29 #ifndef _POSIX2_VERSION |
30 # define _POSIX2_VERSION 0 | |
31 #endif | |
32 | |
4910 | 33 #ifndef DEFAULT_POSIX2_VERSION |
34 # define DEFAULT_POSIX2_VERSION _POSIX2_VERSION | |
35 #endif | |
36 | |
3731 | 37 /* The POSIX version that utilities should conform to. The default is |
38 specified by the system. */ | |
39 | |
40 int | |
41 posix2_version (void) | |
42 { | |
4910 | 43 long int v = DEFAULT_POSIX2_VERSION; |
3731 | 44 char const *s = getenv ("_POSIX2_VERSION"); |
45 | |
46 if (s && *s) | |
47 { | |
48 char *e; | |
49 long int i = strtol (s, &e, 10); | |
50 if (! *e) | |
12421
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
51 v = i; |
3731 | 52 } |
53 | |
54 return v < INT_MIN ? INT_MIN : v < INT_MAX ? v : INT_MAX; | |
55 } |