Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/xlist @ 17111:b8250ce33952
hash-pjw: relax license to LGPLv2+
* modules/hash-pjw (License): Relax, with consent of author.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Wed, 26 Sep 2012 20:12:57 -0700 |
parents | efa853c0fcc4 |
children | 86c983ca0522 |
rev | line source |
---|---|
12445
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
1 Description: |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
2 Abstract sequential list data type, with out-of-memory checking. |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
3 |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
4 Files: |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
5 lib/gl_xlist.h |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
6 lib/gl_xlist.c |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
7 m4/gl_list.m4 |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
8 |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
9 Depends-on: |
12599
efa853c0fcc4
xlist, xoset: Fix missing dependency bug, introduced on 2009-12-13.
Bruno Haible <bruno@clisp.org>
parents:
12445
diff
changeset
|
10 list |
12445
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
11 inline |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
12 stdbool |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
13 xalloc-die |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
14 |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
15 configure.ac: |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
16 gl_LIST |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
17 |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
18 Makefile.am: |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
19 lib_SOURCES += gl_xlist.h gl_xlist.c |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
20 |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
21 Include: |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
22 "gl_xlist.h" |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
23 |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
24 License: |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
25 GPL |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
26 |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
27 Maintainer: |
a8c91b846640
Move the malloc checking from module 'list' to new module 'xlist'.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
28 Bruno Haible |