s3:smb2_create: check for SMB2_CREATE_TAG_DHNC first
[Samba/gebeck_regimport.git] / lib / ccan / str / test / compile_fail-strstr.c
blobdeefef6542bd3bef6bee74b0bd5ba7309288f03c
1 #define CCAN_STR_DEBUG 1
2 #include <ccan/str/str.h>
4 int main(int argc, char *argv[])
6 #ifdef FAIL
7 #if !HAVE_TYPEOF
8 #error We need typeof to check strstr.
9 #endif
10 #else
11 const
12 #endif
13 char *ret;
14 const char *str = "hello";
16 ret = strstr(str, "hell");
17 return ret ? 0 : 1;