Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/memset @ 16364:89227b989588
fatal-signal: use C prototypes (with explicit void).
* lib/fatal-signal.c (uninstall_handlers, install_handlers)
(init_fatal_signal_set, block_fatal_signals): Fix signatures.
author | Akim Demaille <demaille@gostai.com> |
---|---|
date | Wed, 08 Feb 2012 10:36:20 +0100 |
parents | 0527dd6759fc |
children |
rev | line source |
---|---|
4110 | 1 Description: |
4172 | 2 memset() function: fill memory with a constant byte. |
4110 | 3 |
10751 | 4 Status: |
5 obsolete | |
6 | |
7 Notice: | |
8 This module is obsolete. | |
9 | |
4110 | 10 Files: |
11 lib/memset.c | |
12 m4/memset.m4 | |
13 | |
14 Depends-on: | |
15 | |
16 configure.ac: | |
17 gl_FUNC_MEMSET | |
15043
0527dd6759fc
memset: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10751
diff
changeset
|
18 if test $ac_cv_func_memset = no; then |
0527dd6759fc
memset: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10751
diff
changeset
|
19 AC_LIBOBJ([memset]) |
0527dd6759fc
memset: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10751
diff
changeset
|
20 gl_PREREQ_MEMSET |
0527dd6759fc
memset: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10751
diff
changeset
|
21 fi |
4110 | 22 |
23 Makefile.am: | |
24 | |
25 Include: | |
26 <string.h> | |
27 | |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4197
diff
changeset
|
28 License: |
9102
404dc8725caf
Use the synonymous term LGPLv2.
Bruno Haible <bruno@clisp.org>
parents:
7497
diff
changeset
|
29 LGPLv2+ |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4197
diff
changeset
|
30 |
4197 | 31 Maintainer: |
32 Jim Meyering |