EXIT_SUCCESS(3const) — Linux manual page

NAME | LIBRARY | SYNOPSIS | DESCRIPTION | CONFORMING TO | EXAMPLES | SEE ALSO

EXIT_SUCCESS(3const)                                EXIT_SUCCESS(3const)

NAME         top

       EXIT_SUCCESS, EXIT_FAILURE - termination status constants

LIBRARY         top

       Standard C library (libc)

SYNOPSIS         top

       #include <stdlib.h>

       #define EXIT_SUCCESS  0
       #define EXIT_FAILURE  /* nonzero */

DESCRIPTION         top

       EXIT_SUCCESS and EXIT_FAILURE represent a successful and
       unsuccessful exit status respectively, and can be used as
       arguments to the exit(3) function.

CONFORMING TO         top

       C99 and later; POSIX.1-2001 and later.

EXAMPLES         top

       #include <stdio.h>
       #include <stdlib.h>

       int
       main(int argc, char *argv[])
       {
           FILE *fp;

           if (argc != 2) {
               fprintf(stderr, "Usage: %s <file>\n", argv[0]);
               exit(EXIT_FAILURE);
           }

           fp = fopen(argv[1], "r");
           if (fp == NULL) {
               perror(argv[1]);
               exit(EXIT_FAILURE);
           }

           /* Other code omitted */

           fclose(fp);
           exit(EXIT_SUCCESS);
       }

SEE ALSO         top

       exit(3), sysexits.h(3head)

Linux man-pages (unreleased)     (date)             EXIT_SUCCESS(3const)