1 /* OOM message routine header
2  * See oom.c for license information */
3 
4 #ifndef OOM_H
5 #define OOM_H
6 
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10 
11 extern void oom(const char * const restrict msg);
12 
13 #ifdef __cplusplus
14 }
15 #endif
16 
17 #endif /* OOM_H */
18