-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathError.c
29 lines (25 loc) · 847 Bytes
/
Error.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/********************************************************************
* (C) Adam Petersen 2005
*
* This code accompanies the article "Patterns in C, part 5: REACTOR".
* The article is available as PDF from www.adampetersen.se
*
* The code is intended as a illustration of the Reactor at work and
* is not suitable for use in production code (in order to keep this
* example as short as possible, the error handling has been strongly
* simplified).
*
********************************************************************/
#include "Error.h"
#include <stdlib.h>
#include <stdio.h>
/**
* This function defines the error handling strategy.
* In this sample code, it simply prints the given error string and
* terminates the program.
*/
void error(const char* reason)
{
(void) printf("Fatal error: %s\n", reason);
exit(EXIT_FAILURE);
}