Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/posixver @ 16280:5c08684c856f
New module 'random'.
* lib/stdlib.in.h (random, srandom, initstate, setstate): New
declarations.
* lib/random.c: New file, based on glibc/stdlib/random.c.
* m4/random.m4: New file.
* m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RANDOM,
HAVE_RANDOM.
* modules/stdlib (Makefile.am): Substitute GNULIB_RANDOM, HAVE_RANDOM.
* modules/random: New file.
* config/srclist.txt: Add an entry for random.c.
* doc/posix-functions/random.texi: Mention the 'random' module.
* doc/posix-functions/initstate.texi: Likewise.
* doc/posix-functions/setstate.texi: Likewise.
* doc/posix-functions/srandom.texi: Likewise.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sat, 14 Jan 2012 15:15:28 +0100 |
parents | 5677ae34c723 |
children |
rev | line source |
---|---|
4110 | 1 Description: |
4172 | 2 Determine desired POSIX specification version, according to user's environment |
3 variables. | |
4110 | 4 |
5 Files: | |
6 lib/posixver.h | |
7 lib/posixver.c | |
8 m4/posixver.m4 | |
9 | |
10 Depends-on: | |
11 | |
12 configure.ac: | |
13 gl_POSIXVER | |
14 | |
15 Makefile.am: | |
15227
5677ae34c723
posixver: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
7497
diff
changeset
|
16 lib_SOURCES += posixver.c |
4110 | 17 |
18 Include: | |
19 "posixver.h" | |
20 | |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4197
diff
changeset
|
21 License: |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4197
diff
changeset
|
22 GPL |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4197
diff
changeset
|
23 |
4197 | 24 Maintainer: |
25 Paul Eggert, Jim Meyering |