Testsuite: fix analyzer tests on Darwin
[official-gcc.git] / gcc / testsuite / gcc.dg / analyzer / uninit-2.c
blob0b0b8b60abdceacc6360a8ac7a5d0fd8e2c88fd1
1 typedef __SIZE_TYPE__ size_t;
3 extern size_t strlen (const char *__s)
4 __attribute__ ((__nothrow__ , __leaf__))
5 __attribute__ ((__pure__))
6 __attribute__ ((__nonnull__ (1)));
8 extern char *read_file (const char *file);
10 size_t test_1 (const char *file)
12 char *str = read_file (file);
13 return strlen (str);