Go to the source code of this file.
Defines | |
| #define | OPEN_WRITE_ERROR(x) |
| #define | OPEN_READ_ERROR(x) |
| #define | IO_ERROR |
| #define OPEN_WRITE_ERROR | ( | x | ) |
{ \
(void) fprintf(stderr, \
"ERROR: Could not open file %s for writing!\n", x ); \
exit(1); \
}
Definition at line 20 of file spp_macros.h.
| #define OPEN_READ_ERROR | ( | x | ) |
{ \
(void) fprintf(stderr, \
"ERROR: Could not open file %s for reading!\n", x ); \
exit(1); \
}
Definition at line 27 of file spp_macros.h.
| #define IO_ERROR |
{ \
(void) fprintf(stderr, \
"pp_read_input : Problem while reading input file\n"); \
exit(1); \
}
Definition at line 34 of file spp_macros.h.
1.6.1