Middleware, development tools, realtime operating system
software and services for superior embedded design


Home
QNX Community Resources
Developer Support
QNX Documentation Library
QNX Developer Support

QNX Developer Support

QNX Software Systems
Developer Resources
Blogs
Board support packages
Foundry27 projects
Forums
Hardware support listing
Online video tutorials
Product documentation
Technical Articles

[Previous] [Contents] [Index] [Next]

stderr

The standard error stream

Synopsis:

#include <stdio.h>

FILE * stderr;

Description:

This global variable defines the standard error stream. It's set to the console by default, but you can redirect it by calling freopen().

STDERR_FILENO, which is defined in <unistd.h>, defines the file descriptor that corresponds to stderr.

Classification:

ANSI, POSIX 1003.1

See also:

assert(), err(), errx(), getopt(), herror(), perror(), stdin, stdout, strerror(), verr(), verrx(), vwarn(), vwarnx(), warn(), warnx()


[Previous] [Contents] [Index] [Next]