1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/lib/replace/replace-testsuite.h
Andrew Bartlett 502135df9f lib/replace: Try to fix build on HP-UX for os2_delete test
The issue is that this file is both used in an autoconf test, and
later in a smbtorture test.  Because os2_delete.c does not include
replace.h, bool may not be defined.

So, instead we shift the need for bool to a different header.

(The readdir tests in repdir.m4 are not yet in the waf configure).

Andrew Bartlett
2012-09-23 14:31:01 +10:00

11 lines
243 B
C

#ifndef __LIB_REPLACE_REPLACE_TESTSUITE_H__
#define __LIB_REPLACE_REPLACE_TESTSUITE_H__
#include <stdbool.h>
struct torture_context;
bool torture_local_replace(struct torture_context *ctx);
#endif /* __LIB_REPLACE_REPLACE_TESTSUITE_H__ */