Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ././../../../../../../usr/include/pcre/../setjmp.h
Real path: /usr/include/setjmp.h
Zurück
/* Copyright (c) 1988 AT&T */ /* All Rights Reserved */ /* * Copyright (c) 1988, 2016, Oracle and/or its affiliates. All rights reserved. */ #ifndef _SETJMP_H #define _SETJMP_H #include <iso/setjmp_iso.h> /* * Allow global visibility for symbols defined in * C++ "std" namespace in <iso/setjmp_iso.h>. */ #if __cplusplus >= 199711L using std::jmp_buf; using std::longjmp; #endif #ifdef __cplusplus extern "C" { #endif /* not defined by the ANSI C standard */ #if !defined(_STRICT_STDC) || defined(__XOPEN_OR_POSIX) || \ defined(__EXTENSIONS__) #if defined(_LP64) || defined(_I32LPx) typedef long sigjmp_buf[_SIGJBLEN]; #else typedef int sigjmp_buf[_SIGJBLEN]; #endif extern int sigsetjmp(sigjmp_buf, int); #pragma unknown_control_flow(sigsetjmp) extern void siglongjmp(sigjmp_buf, int) __NORETURN; #endif /* !defined(_STRICT_STDC) || defined(__XOPEN_OR_POSIX) || ... */ #ifdef __cplusplus } #endif #endif /* _SETJMP_H */