diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-09-23 13:20:45 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-09-23 14:31:01 +1000 |
commit | 08d3062fc3ece6b5d98e32bad5f1d54c088b0dd0 (patch) | |
tree | dae0aa38eae6f7c9e4717e142d54ea420c3f586c /lib/replace | |
parent | a4c54f66585c6f6cf01be5e28f211176fc7d241d (diff) | |
download | samba-08d3062fc3ece6b5d98e32bad5f1d54c088b0dd0.tar.gz samba-08d3062fc3ece6b5d98e32bad5f1d54c088b0dd0.tar.bz2 samba-08d3062fc3ece6b5d98e32bad5f1d54c088b0dd0.zip |
ntdb: Try to fix the build on Solaris which does not have err
Diffstat (limited to 'lib/replace')
-rw-r--r-- | lib/replace/replace-testsuite.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/replace/replace-testsuite.h b/lib/replace/replace-testsuite.h new file mode 100644 index 0000000000..a522853351 --- /dev/null +++ b/lib/replace/replace-testsuite.h @@ -0,0 +1,13 @@ +#ifndef __LIB_REPLACE_REPLACE_TEST_H__ +#define __LIB_REPLACE_REPLACE_TEST_H__ + +#include <stdbool.h> +struct torture_context; + +bool torture_local_replace(struct torture_context *ctx); +int libreplace_test_strptime(void); +int test_readdir_os2_delete(void); +int getifaddrs_test(void); + +#endif /* __LIB_REPLACE_REPLACE_TEST_H__ */ + |