Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../../usr/include/err.h
Real path: /usr/include/err.h
Zurück
/* * Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved. */ #ifndef _ERR_H #define _ERR_H #ifdef __cplusplus extern "C" { #endif #include <stdio.h> #include <stdarg.h> /* Program exit and warning calls */ /* PRINTFLIKE2 */ void err(int, const char *, ...) __NORETURN; void verr(int, const char *, va_list) __NORETURN; /* PRINTFLIKE2 */ void errx(int, const char *, ...) __NORETURN; void verrx(int, const char *, va_list) __NORETURN; /* PRINTFLIKE1 */ void warn(const char *, ...); void vwarn(const char *, va_list); /* PRINTFLIKE1 */ void warnx(const char *, ...); void vwarnx(const char *, va_list); #ifdef __cplusplus } #endif #endif /* _ERR_H */