Parent Directory
|
Revision Log
initial test framework
| 1 | /* headers.h: include all system headers |
| 2 | * |
| 3 | * Copyright 1999-2008 Gentoo Foundation |
| 4 | * Licensed under the GPL-2 |
| 5 | */ |
| 6 | |
| 7 | #ifndef __SB_HEADERS_H__ |
| 8 | #define __SB_HEADERS_H__ |
| 9 | |
| 10 | #include "config.h" |
| 11 | |
| 12 | #ifdef HAVE_DIRENT_H |
| 13 | # include <dirent.h> |
| 14 | #endif |
| 15 | #ifdef HAVE_DLFCN_H |
| 16 | # include <dlfcn.h> |
| 17 | #endif |
| 18 | #ifdef HAVE_ELF_H |
| 19 | # include <elf.h> |
| 20 | #endif |
| 21 | #ifdef HAVE_ERRNO_H |
| 22 | # include <errno.h> |
| 23 | #endif |
| 24 | #ifdef HAVE_EXECINFO_H |
| 25 | # include <execinfo.h> |
| 26 | #endif |
| 27 | #ifdef HAVE_FCNTL_H |
| 28 | # include <fcntl.h> |
| 29 | #endif |
| 30 | #ifdef HAVE_LIBGEN_H |
| 31 | # include <libgen.h> |
| 32 | #endif |
| 33 | #ifdef HAVE_LIMITS_H |
| 34 | # include <limits.h> |
| 35 | #endif |
| 36 | #ifdef HAVE_MEMORY_H |
| 37 | # include <memory.h> |
| 38 | #endif |
| 39 | #ifdef HAVE_SIGNAL_H |
| 40 | # include <signal.h> |
| 41 | #endif |
| 42 | #ifdef HAVE_STDARG_H |
| 43 | # include <stdarg.h> |
| 44 | #endif |
| 45 | #ifdef HAVE_STDBOOL_H |
| 46 | # include <stdbool.h> |
| 47 | #endif |
| 48 | #ifdef HAVE_STDDEF_H |
| 49 | # include <stddef.h> |
| 50 | #endif |
| 51 | #ifdef HAVE_STDIO_H |
| 52 | # include <stdio.h> |
| 53 | #endif |
| 54 | #ifdef HAVE_STDLIB_H |
| 55 | # include <stdlib.h> |
| 56 | #endif |
| 57 | #ifdef HAVE_STRING_H |
| 58 | # include <string.h> |
| 59 | #endif |
| 60 | #ifdef HAVE_STRINGS_H |
| 61 | # include <strings.h> |
| 62 | #endif |
| 63 | #ifdef HAVE_SYSCALL_H |
| 64 | # include <syscall.h> |
| 65 | #endif |
| 66 | #ifdef HAVE_UNISTD_H |
| 67 | # include <unistd.h> |
| 68 | #endif |
| 69 | #ifdef HAVE_UTIME_H |
| 70 | # include <utime.h> |
| 71 | #endif |
| 72 | |
| 73 | #ifdef HAVE_SYS_FILE_H |
| 74 | # include <sys/file.h> |
| 75 | #endif |
| 76 | #ifdef HAVE_SYS_MMAN_H |
| 77 | # include <sys/mman.h> |
| 78 | #else |
| 79 | #error |
| 80 | #endif |
| 81 | #ifdef HAVE_SYS_PARAM_H |
| 82 | # include <sys/param.h> |
| 83 | #endif |
| 84 | #ifdef HAVE_SYS_STAT_H |
| 85 | # include <sys/stat.h> |
| 86 | #endif |
| 87 | #ifdef HAVE_SYS_TIME_H |
| 88 | # include <sys/time.h> |
| 89 | #endif |
| 90 | #ifdef HAVE_SYS_TYPES_H |
| 91 | # include <sys/types.h> |
| 92 | #endif |
| 93 | #ifdef HAVE_SYS_WAIT_H |
| 94 | # include <sys/wait.h> |
| 95 | #endif |
| 96 | |
| 97 | #include "localdecls.h" |
| 98 | |
| 99 | #endif |
| ViewVC Help | |
| Powered by ViewVC 1.1.13 |