Don't try calling lsl when file is missing.
[splint-patched.git] / test / skipheader / main.c
blob829a79d76d37cde9e88a7685d82f495fdeef4096
1 /*
2 * Test to see if all standard/posix headers are recognized and skipped, given
3 * the appropriate flags.
4 */
6 /* skip-iso-headers */
7 #include <assert.h>
8 #include <complex.h>
9 #include <ctype.h>
10 #include <errno.h>
11 #include <fenv.h>
12 #include <float.h>
13 #include <inttypes.h>
14 #include <iso646.h>
15 #include <limits.h>
16 #include <locale.h>
17 #include <math.h>
18 #include <setjmp.h>
19 #include <signal.h>
20 #include <stdarg.h>
21 #include <stdbool.h>
22 #include <stddef.h>
23 #include <stdint.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <strings.h> /* some systems use this...they shouldn't */
28 #include <tgmath.h>
29 #include <time.h>
30 #include <wchar.h>
31 #include <wctype.h>
33 /* skip-posix-headers */
34 #include <dirent.h>
35 #include <fcntl.h>
36 #include <grp.h>
37 #include <pwd.h>
38 #include <regex.h>
39 #include <sys/stat.h>
40 #include <sys/times.h>
41 #include <sys/types.h>
42 #include <netdb.h> /* unix */
43 #include <netinet/in.h> /* unix */
44 #include <sys/resource.h> /* unix */
45 #include <sys/socket.h> /* not posix */
46 #include <sys/syslog.h> /* not posix */
47 #include <sys/utsname.h>
48 #include <sys/wait.h>
49 #include <termios.h>
50 #include <unistd.h>
51 #include <utime.h>
53 int
54 main(void)
56 return 0;