Mercurial > hg > octave-shane > gnulib-hg
annotate lib/strtoul.c @ 13706:b236a91e37b9
pthread: add pthread_spin_destroy
* lib/pthread.in.h (pthread_spin_destroy): New function.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Mon, 20 Sep 2010 16:14:49 -0700 |
parents | c2cbabec01dd |
children | 97fc9a21a8fb |
rev | line source |
---|---|
12559
c2cbabec01dd
update nearly all FSF copyright year lists to include 2010
Jim Meyering <meyering@redhat.com>
parents:
12518
diff
changeset
|
1 /* Copyright (C) 1991, 1997, 2009, 2010 Free Software Foundation, Inc. |
4425
6028a4f876cb
This file is now automatically regenerated from libc; regenerate it.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3185
diff
changeset
|
2 This file is part of the GNU C Library. |
15 | 3 |
9309
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
5848
diff
changeset
|
4 This program is free software: you can redistribute it and/or modify |
4425
6028a4f876cb
This file is now automatically regenerated from libc; regenerate it.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3185
diff
changeset
|
5 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:
5848
diff
changeset
|
6 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:
5848
diff
changeset
|
7 (at your option) any later version. |
15 | 8 |
4425
6028a4f876cb
This file is now automatically regenerated from libc; regenerate it.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3185
diff
changeset
|
9 This program is distributed in the hope that it will be useful, |
6028a4f876cb
This file is now automatically regenerated from libc; regenerate it.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3185
diff
changeset
|
10 but WITHOUT ANY WARRANTY; without even the implied warranty of |
6028a4f876cb
This file is now automatically regenerated from libc; regenerate it.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3185
diff
changeset
|
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
6028a4f876cb
This file is now automatically regenerated from libc; regenerate it.
Paul Eggert <eggert@cs.ucla.edu>
parents:
3185
diff
changeset
|
12 GNU General Public License for more details. |
649
89f4c1937ac7
update FSF address in copyright and remove any trailing blanks
Jim Meyering <jim@meyering.net>
parents:
15
diff
changeset
|
13 |
9309
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
5848
diff
changeset
|
14 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:
5848
diff
changeset
|
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
15 | 16 |
12421
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
17 #define UNSIGNED 1 |
15 | 18 |
3185
2cc18e750722
Sync from GNU libc. Use double quotes, not <...>
Jim Meyering <jim@meyering.net>
parents:
2807
diff
changeset
|
19 #include "strtol.c" |