Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ././../../../../../../usr/include/iso/stdlib_c99.h
Real path: /usr/include/iso/stdlib_c99.h
Zurück
/* * Copyright (c) 2003, 2017, Oracle and/or its affiliates. All rights reserved. */ /* * An application should not include this header directly. Instead it * should be included only through the inclusion of other Sun headers. * * The contents of this header is limited to identifiers specified in * the C99 standard and in conflict with the C++ implementation of the * standard header. The C++ standard may adopt the C99 standard at * which point it is expected that the symbols included here will * become part of the C++ std namespace. */ #ifndef _ISO_STDLIB_C99_H #define _ISO_STDLIB_C99_H #ifdef __cplusplus extern "C" { #endif /* * The following have been added as a result of the ISO/IEC 9899:1999 * standard. For a strictly conforming C application, visibility is * contingent on the value of __STDC_VERSION__ (see sys/feature_tests.h). * For non-strictly conforming C applications, there are no restrictions * on the C namespace. */ #if defined(_LONGLONG_TYPE) typedef struct { long long quot; long long rem; } lldiv_t; #endif /* defined(_LONGLONG_TYPE) */ #if (!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX)) || \ defined(_STDC_C99) || defined(__EXTENSIONS__) extern void _Exit(int) __NORETURN; extern float strtof(const char *_RESTRICT_KYWD, char **_RESTRICT_KYWD); extern long double strtold(const char *_RESTRICT_KYWD, char **_RESTRICT_KYWD); #if defined(_LONGLONG_TYPE) extern long long atoll(const char *); extern long long llabs(long long); extern lldiv_t lldiv(long long, long long); extern long long strtoll(const char *_RESTRICT_KYWD, char **_RESTRICT_KYWD, int); extern unsigned long long strtoull(const char *_RESTRICT_KYWD, char **_RESTRICT_KYWD, int); #endif /* defined(_LONGLONG_TYPE) */ #endif /* (!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX)) ... */ /* * The following have been added as a result of the ISO/IEC 9899:2011 * standard. For a strictly conforming C application, visibility is * contingent on the value of __STDC_VERSION__ (see sys/feature_tests.h). */ #if (!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX)) || \ defined(_STDC_C11) || defined(__EXTENSIONS__) #if __cplusplus >= 199711L namespace std { #endif #if !defined(_SIZE_T) || __cplusplus >= 199711L #define _SIZE_T #if defined(_LP64) || defined(_I32LPx) typedef unsigned long size_t; /* size of something in bytes */ #else typedef unsigned int size_t; /* (historical version) */ #endif #endif /* !_SIZE_T */ extern void *aligned_alloc(size_t, size_t); extern int at_quick_exit(void (*)(void)); extern void quick_exit(int) __NORETURN; #if __cplusplus >= 199711L } #endif /* end of namespace std */ #endif /* (!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX)) ... */ #ifdef __cplusplus } #endif #endif /* _ISO_STDLIB_C99_H */