]> eyrie.org Git - kerberos/krb5-strength.git/commit - configure.ac
Add a basic portability library
authorRuss Allbery <rra@stanford.edu>
Thu, 10 Dec 2009 01:13:49 +0000 (17:13 -0800)
committerRuss Allbery <rra@stanford.edu>
Thu, 10 Dec 2009 01:13:49 +0000 (17:13 -0800)
commit6133868cf8ddc45639eec74fbca5e3d32c79e98d
treed140615a02e8d7e8800b128f5153af630e8178df
parent4fb2b01b567084254b23c6344c459f80cd38a76a
Add a basic portability library

Add a basic portability library that ensures that functions like snprintf
and strlcpy are available, since I want to use them in the plugin code.
Synchronized with rra-c-util 2.1.
23 files changed:
.gitignore
Makefile.am
configure.ac
m4/snprintf.m4 [new file with mode: 0644]
portable/asprintf.c [new file with mode: 0644]
portable/dummy.c [new file with mode: 0644]
portable/macros.h [new file with mode: 0644]
portable/snprintf.c [new file with mode: 0644]
portable/stdbool.h [new file with mode: 0644]
portable/strlcat.c [new file with mode: 0644]
portable/strlcpy.c [new file with mode: 0644]
portable/system.h [new file with mode: 0644]
tests/TESTS
tests/portable/asprintf-t.c [new file with mode: 0644]
tests/portable/asprintf.c [new file with mode: 0644]
tests/portable/snprintf-t.c [new file with mode: 0644]
tests/portable/snprintf.c [new file with mode: 0644]
tests/portable/strlcat-t.c [new file with mode: 0644]
tests/portable/strlcat.c [new file with mode: 0644]
tests/portable/strlcpy-t.c [new file with mode: 0644]
tests/portable/strlcpy.c [new file with mode: 0644]
tests/tap/basic.c [new file with mode: 0644]
tests/tap/basic.h [new file with mode: 0644]