📄 mpe_logging_conf.h.in
字号:
/* mpe_logging_conf.h.in. Generated from configure.in by autoheader. *//* Define to 1 if you have the <fcntl.h> header file. */#undef HAVE_FCNTL_H/* Define to 1 if you have the <inttypes.h> header file. */#undef HAVE_INTTYPES_H/* Define to 1 if you have the `lrand48' function. */#undef HAVE_LRAND48/* Define to 1 if you have the <memory.h> header file. */#undef HAVE_MEMORY_H/* Define to 1 if you have the `mkstemp' function. */#undef HAVE_MKSTEMP/* Define to 1 if O_BINARY flag for open() exists. */#undef HAVE_O_BINARY/* Define if PMPI_Comm_Create_keyval() available */#undef HAVE_PMPI_COMM_CREATE_KEYVAL/* Define if PMPI_Comm_free_keyval() available */#undef HAVE_PMPI_COMM_FREE_KEYVAL/* Define if PMPI_Comm_get_attr() available */#undef HAVE_PMPI_COMM_GET_ATTR/* Define if PMPI_Comm_set_attr() available */#undef HAVE_PMPI_COMM_SET_ATTR/* Define to 1 if you have the `snprintf' function. */#undef HAVE_SNPRINTF/* Define to 1 if you have the `srand48' function. */#undef HAVE_SRAND48/* Define to 1 if you have the <stdint.h> header file. */#undef HAVE_STDINT_H/* Define to 1 if you have the <stdio.h> header file. */#undef HAVE_STDIO_H/* Define to 1 if you have the <stdlib.h> header file. */#undef HAVE_STDLIB_H/* Define to 1 if you have the <strings.h> header file. */#undef HAVE_STRINGS_H/* Define to 1 if you have the <string.h> header file. */#undef HAVE_STRING_H/* Define to 1 if you have the <sys/stat.h> header file. */#undef HAVE_SYS_STAT_H/* Define to 1 if you have the <sys/time.h> header file. */#undef HAVE_SYS_TIME_H/* Define to 1 if you have the <sys/types.h> header file. */#undef HAVE_SYS_TYPES_H/* Define to 1 if you have the <unistd.h> header file. */#undef HAVE_UNISTD_H/* Define if lrand48 needs a declaration */#undef NEEDS_LRAND48_DECL/* Define if mkstemp needs a declaration */#undef NEEDS_MKSTEMP_DECL/* Define if snprintf needs a declaration */#undef NEEDS_SNPRINTF_DECL/* Define if srand48 needs a declaration */#undef NEEDS_SRAND48_DECL/* Define to the address where bug reports for this package should be sent. */#undef PACKAGE_BUGREPORT/* Define to the full name of this package. */#undef PACKAGE_NAME/* Define to the full name and version of this package. */#undef PACKAGE_STRING/* Define to the one symbol short name of this package. */#undef PACKAGE_TARNAME/* Define to the version of this package. */#undef PACKAGE_VERSION/* Define to 1 if you have the ANSI C header files. */#undef STDC_HEADERS/* Define to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel and VAX). */#undef WORDS_BIGENDIAN/* Define if 64-bit file address support in 32-bit OS. */#undef _FILE_OFFSET_BITS/* Define if 64-bit file address support in 32-bit OS. */#undef _LARGEFILE64_SOURCE/* Define to empty if `const' does not conform to ANSI C. */#undef const/* Define WINDOWS specific features *//* Windows' open() opens an ASCII file by default, add Windows specific flag O_BINARY to open()'s argument*/#ifdef HAVE_WINDOWS_H#define OPEN( a, b, c ) open( a, b | O_BINARY, c )#else#ifdef _LARGEFILE64_SOURCE#ifdef HAVE_O_BINARY#define OPEN( a, b, c ) open( a, b | O_LARGEFILE | O_BINARY, c )#else#define OPEN( a, b, c ) open( a, b | O_LARGEFILE, c )#endif#else#ifdef HAVE_O_BINARY#define OPEN( a, b, c ) open( a, b | O_BINARY, c )#else#define OPEN( a, b, c ) open( a, b, c )#endif#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -